Initializes a new instance of the
ProcessingEventArgs class with provided attributes.
Syntax
'Declaration
Public Function New( _
ByVal As String, _
ByVal As Integer, _
ByVal As ProcessingState _
)
'Usage
Dim fileId As String
Dim filePageIndex As Integer
Dim state As ProcessingState
Dim instance As New ProcessingEventArgs(fileId, filePageIndex, state)
public ProcessingEventArgs(
string ,
int ,
ProcessingState
)
public: ProcessingEventArgs(
string* ,
int ,
ProcessingState
)
public:
ProcessingEventArgs(
String^ ,
int ,
ProcessingState
)
Parameters
- fileId
- Identifier of current file being processed.
- filePageIndex
- Zero-based index of the current file page being processed.
- state
- Processing state.
See Also