Foxit PDF SDK
|
Inherits Object.
Public Types | |
enum | WorkbookSettings { e_WorkbookSettingsDocument = 0, e_WorkbookSettingsEachTable = 1, e_WorkbookSettingsEachPage = 2 } |
Enumeration for Excel workbook settings. More... | |
Public Member Functions | |
PDF2ExcelSettingData () | |
Constructor. | |
PDF2ExcelSettingData (String decimal_symbol, String thousands_separator, WorkbookSettings workbook_settings) | |
Constructor, with parameters. More... | |
PDF2ExcelSettingData & | operator= (const PDF2ExcelSettingData &data) |
Assign operator. More... | |
void | Set (String decimal_symbol, String thousands_separator, WorkbookSettings workbook_settings) |
Set value. More... | |
Public Attributes | |
String | decimal_symbol |
A string value which indicates being recognized as decimal during the conversion of PDF documents to excel format documents. More... | |
String | thousands_separator |
A string value which indicates being recognized as thousands separator during the conversion of PDF documents to excel format documents. More... | |
WorkbookSettings | workbook_settings |
An enumeration value which indicates the setting of the workbook for the conversion of PDF documents to Excel format documents. More... | |
This class represents setting data used for converting PDF documents to Excel format documents.
|
inline |
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. |
|
inline |
Assign operator.
[in] | data | Another PDF-to-Excel setting data object, whose value would be assigned to current object. |
|
inline |
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. |
String foxit::addon::conversion::pdf2office::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.
String foxit::addon::conversion::pdf2office::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.
WorkbookSettings foxit::addon::conversion::pdf2office::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 PDF2ExcelSettingData::e_WorkbookSettingsDocument and this should be one of these values. Default value: PDF2ExcelSettingData::e_WorkbookSettingsEachPage.