|
| static JobEnvelope | Parse (string description, WorkerProcess.IMessageChannel outputChannel, Action< IEnumerable< JobEnvelopeData >, JobEnvelope > additionalOptionProcessor) |
| | Parses a JobEnvelope from the specified job description or throws an exception if it can't be parsed. More...
|
| |
| static bool | TryParse (string description, WorkerProcess.IMessageChannel outputChannel, Action< IEnumerable< JobEnvelopeData >, JobEnvelope > additionalOptionProcessor, out JobEnvelope jobEnvelope) |
| | Creates a JobEnvelope from a job description (created by GetJobDescription). A return value indicates whether the conversion succeeded or failed. More...
|
| |
| static bool | TryParse (string description, WorkerProcess.IMessageChannel outputChannel, out JobEnvelope jobEnvelope) |
| | Creates a JobEnvelope from a job description (created by GetJobDescription). A return value indicates whether the conversion succeeded or failed. More...
|
| |
| static void | RegisterCustomJobEnvelopeType (Type customJobEnvelopeType) |
| | Registers a custom JobEnvelope type As the regular JobHandler won't understand the custom JobEnvelope type you'll also need to create a JobProcessor that uses a custom JobHandler. The JobHandler should be a console application that registers the same custom JobEnvelope types before calling new JobHandler().Run(); More...
|
| |
| static bool | UnregisterCustomJobEnvelopeType (Type customJobEnvelopeType) |
| | Unregisters a custom JobEnvelope type More...
|
| |
|
|
ExcelTablesOnSheet | SingleTable [getset] |
| | Gets or sets whether to join all output information into a single sheet. The default is ExcelTablesOnSheet.PlaceEachTableOnOwnSheet.
|
| |
|
bool | AutoDetectSeparators [getset] |
| | Gets or sets whether to automatically detect decimal and thousands separators. The default is true.
|
| |
|
DecimalSeparator | DecimalSeparator [getset] |
| | Gets or sets the decimal separator. The default is DecimalSeparator.Period.
|
| |
|
ThousandsSeparator | ThousandsSeparator [getset] |
| | Gets or sets the thousands separator. The default is ThousandsSeparator.Comma.
|
| |
|
bool | DetectTiledPages [getset] |
| | Gets or sets whether to detect tables that are tiled across multiple pages. The default is true.
|
| |
|
bool | KeepNonTableContent [getset] |
| | Gets or sets whether to include non-table content such as images or text in the reconstructed Excel document. The default is false.
|
| |
|
bool | PreserveColumnsInNonTableContent [getset] |
| | Gets or sets whether columns of non-table content in the PDF should be preserved as separate columns in the reconstructed Excel file. The default is true. This property will be ignored if KeepNonTableContent is false.
|
| |
|
bool | TextAnnotationsAsContent [getset] |
| | Gets or sets whether text annotations should be included as non-table content. The default is true. This property will be ignored if KeepNonTableContent is false.
|
| |
|
HeaderAndFooterMode | HeaderAndFooterMode [getset] |
| | Gets or sets the header and footer mode. The default is HeaderAndFooterMode.Remove.
|
| |
|
FootnotesMode | FootnotesMode [getset] |
| | Gets or sets the footnote mode. The default is FootnotesMode.Remove.
|
| |
|
bool | TablesFromContent [set] |
| | Alias for KeepNonTableContent.
|
| |
| override string | Name [get] |
| | Gets the name for this type of JobEnvelope. More...
|
| |
|
SelectedAreas | SelectedAreas [getset] |
| | Gets or sets the collection of selected areas that should be included when converting just part of a document. The default is null.
|
| |
|
bool | AutoRotate [getset] |
| | Gets or sets whether to automatically rotate pages based on the orientation of the text on the pages. The default is true.
|
| |
| string | TextRecoveryLanguage [getset] |
| | Gets or sets the text recovery language. The default is null (automatic language detection). More...
|
| |
|
string | UserProperties [getset] |
| | Gets or sets the user properties. The default is null.
|
| |
|
TextRecovery | TextRecoveryType [getset] |
| | Gets or sets the text recovery type. The default is TextRecovery.Automatic.
|
| |
|
TextRecoveryNSE | TextRecoveryNseType [getset] |
| | Gets or sets the text recovery NSE type. The default is TextRecoveryNSE.Automatic.
|
| |
|
string | OcrLanguage [set] |
| | Deprecated alias for TextRecoveryLanguage.
|
| |
|
TextRecovery | OcrMode [set] |
| | Deprecated alias for TextRecoveryType.
|
| |
|
TextRecoveryNSE | NseMode [set] |
| | Deprecated alias for TextRecoveryNseType.
|
| |
|
string | Password [getset] |
| | Gets or sets the password.
|
| |
|
bool | GraphicsAsImages [getset] |
| | Gets or sets whether vector images should be converted to bitmap images. The default is false.
|
| |
| bool | KeepBackgroundColorText [getset] |
| | Gets or sets whether to recover text that is invisible because it is exactly the same colour as the background. The default is false. More...
|
| |
|
bool | KeepInvisibleText [getset] |
| | Gets or sets whether to recover text that is invisible because it has no stroke or fill. This is typically used in PDFs to provide a searchable layer in scanned pages. The default is false.
|
| |
|
PageRange | PageRange [getset] |
| | Gets or sets the page range that should be converted. The default is null (all pages).
|
| |
|
string | ImageWatermarkPath [getset] |
| | Gets or sets the path to the watermark image file. The default is null (no watermark).
|
| |
|
object | CustomData [getset] |
| | Gets or sets the custom data. The default is null. Note: setting this to a non-string value will prevent duplicate job detection
|
| |
|
string | SourcePath [getset] |
| | Gets or sets the path to the source file.
|
| |
|
IList< string > | OutputPaths [get] |
| | Gets the list of output paths.
|
| |
|
JobStatus | Status [get] |
| | Gets the status of the conversion. This can indicate success, whether there was a problem, etc.
|
| |
|
string | Message [get] |
| | Gets the message.
|
| |
|
int | ID [get] |
| | Gets the ID.
|
| |
|
bool | DoProgress [getset] |
| | Gets or sets whether events should be raised to indicate how far the conversion has progressed. The default is false.
|
| |
| bool | NoCopies [getset] |
| | Gets or sets whether the conversion should be performed on the original source file rather than a temporary copy. The default is false (perform the conversion on a temporary copy). Setting this to true can risk data loss if: More...
|
| |
|
bool | Duplicate [getset] |
| | Gets or sets whether the JobEnvelope is a duplicate.
|
| |
|
TimeSpan | ProcessDuration [get] |
| | Gets the time it took to process the job.
|
| |
Represents types of Pdf To Excel Job Envelope.