Foxit PDF SDK
|
Public Member Functions | |
constructor (decimal_symbol, thousands_separator, workbook_settings) | |
Constructor, with parameters. More... | |
Set (decimal_symbol, thousands_separator, workbook_settings) | |
Set value. More... | |
Public Attributes | |
decimal_symbol | |
A string value which indicates being recognized as decimal during the conversion of PDF documents to excel format documents. More... | |
thousands_separator | |
A string value which indicates being recognized as thousands separator during the conversion of PDF documents to excel format documents. More... | |
workbook_settings | |
An enumeration value which indicates the setting of the workbook for the conversion of PDF documents to Excel format documents. More... | |
Static Public Attributes | |
static | e_WorkbookSettingsDocument |
Enumeration for Excel workbook settings. More... | |
static | e_WorkbookSettingsEachPage |
Create worksheet for each page. | |
static | e_WorkbookSettingsEachTable |
Create worksheet for each table. | |
FSDK.PDF2ExcelSettingData.constructor | ( | decimal_symbol | , |
thousands_separator | , | ||
workbook_settings | |||
) |
Constructor, with parameters.
[in] | decimal_symbol | A string value which indicates being recognized as decimal during the conversion of PDF documents to excel format documents. |
[in] | thousands_separator | A string value which indicates being recognized as thousands separator during the conversion of PDF documents to excel format documents. |
[in] | workbook_settings | An enumeration value which indicates the setting of the workbook for the conversion of PDF documents to Excel format documents. |
FSDK.PDF2ExcelSettingData.Set | ( | decimal_symbol | , |
thousands_separator | , | ||
workbook_settings | |||
) |
Set value.
[in] | decimal_symbol | A string value which indicates being recognized as decimal during the conversion of PDF documents to excel format documents. |
[in] | thousands_separator | A string value which indicates being recognized as thousands separator during the conversion of PDF documents to excel format documents. |
[in] | workbook_settings | An enumeration value which indicates the setting of the workbook for the conversion of PDF documents to Excel format documents. |
FSDK.PDF2ExcelSettingData.decimal_symbol |
A string value which indicates being recognized as decimal during the conversion of PDF documents to excel format documents.
The decimal symbol is used to separate the integer part and the decimal part of a number. If this parameter is set to ".", then the number "123.456" will be recognized as 123.456. If this parameter is set to ",", then the number "123,456" will be recognized as 123.456. If this parameter is not set, the decimal symbol will be recognized automatically.
|
static |
Enumeration for Excel workbook settings.
Values of this enumeration should be used alone.
Create single worksheet for the document.
FSDK.PDF2ExcelSettingData.thousands_separator |
A string value which indicates being recognized as thousands separator during the conversion of PDF documents to excel format documents.
The thousands separator is used to separate the thousands part of a number. If this parameter is set to ",", then the number "123,456" will be recognized as 123456. If this parameter is set to ".", then the number "123.456" will be recognized as 123456. If this parameter is set to " ", then the number "123 456" will be recognized as 123456. If this parameter is not set, the thousands separator will be recognized automatically.
FSDK.PDF2ExcelSettingData.workbook_settings |
An enumeration value which indicates the setting of the workbook for the conversion of PDF documents to Excel format documents.
Please refer to values starting from FSDK.PDF2ExcelSettingData.e_WorkbookSettingsDocument and this should be one of these values. Default value: FSDK.PDF2ExcelSettingData.e_WorkbookSettingsEachPage.