Class BatchExportedEventArgs
Inheritance
System.Object
BatchExportedEventArgs
Namespace: Sdl.Core.TM.ImportExport
Assembly: Sdl.Core.TM.ImportExport.dll
Syntax
public class BatchExportedEventArgs : CancelEventArgs
Constructors
BatchExportedEventArgs(Int32, Int32)
Instantiates a new event data object.
Declaration
public BatchExportedEventArgs(int totalProcessed, int totalExported)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | totalProcessed | The total number of processed translation units |
System.Int32 | totalExported | The total number of exported translation units |
Properties
TotalExported
The total number of exported translation units. This is usually equivalent to TotalProcessed, but may be lower in case the export process uses filters.
Declaration
public int TotalExported { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
TotalProcessed
The total number of processed translation units. This is usually equivalent to TotalExported, but if the export process uses filters, the number of processed translation units may be lower.
Declaration
public int TotalProcessed { get; }
Property Value
Type | Description |
---|---|
System.Int32 |