Foxit PDF Conversion SDK
FoxitPDFConversionSDKPython3.PDF2ExcelSettingData Class Reference

Inherits FoxitPDFConversionSDKPython3._object.

Public Member Functions

def PDF2ExcelSettingData ()
 Constructor. More...
 
def Set (decimal_symbol, thousands_separator, workbook_settings)
 Set value. More...
 

Static Public Attributes

 decimal_symbol = _fpdfconversionsdk.PDF2ExcelSettingData_decimal_symbol
 A string value which indicates being recognized as decimal during the conversion of PDF documents to excel format documents. More...
 
 e_WorkbookSettingsDocument = _fpdfconversionsdk.PDF2ExcelSettingData_e_WorkbookSettingsDocument
 Create single worksheet for the document.
 
 e_WorkbookSettingsEachPage = _fpdfconversionsdk.PDF2ExcelSettingData_e_WorkbookSettingsEachPage
 Create worksheet for each page.
 
 e_WorkbookSettingsEachTable = _fpdfconversionsdk.PDF2ExcelSettingData_e_WorkbookSettingsEachTable
 Create worksheet for each table.
 
 thousands_separator = _fpdfconversionsdk.PDF2ExcelSettingData_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 = _fpdfconversionsdk.PDF2ExcelSettingData_workbook_settings
 An enumeration value which indicates the setting of the workbook for the conversion of PDF documents to Excel format documents. More...
 

Detailed Description

This class represents setting data used for converting PDF documents to Excel format documents.

Constructor & Destructor Documentation

◆ PDF2ExcelSettingData()

def FoxitPDFConversionSDKPython3.PDF2ExcelSettingData.PDF2ExcelSettingData ( )

Constructor.

Constructor, with parameters.

Parameters
[in]decimal_symbolA string value which indicates being recognized as decimal during the conversion of PDF documents to excel format documents.
[in]thousands_separatorA string value which indicates being recognized as thousands separator during the conversion of PDF documents to excel format documents.
[in]workbook_settingsAn enumeration value which indicates the setting of the workbook for the conversion of PDF documents to Excel format documents.

Member Function Documentation

◆ Set()

def FoxitPDFConversionSDKPython3.PDF2ExcelSettingData.Set (   decimal_symbol,
  thousands_separator,
  workbook_settings 
)

Set value.

Parameters
[in]decimal_symbolA string value which indicates being recognized as decimal during the conversion of PDF documents to excel format documents.
[in]thousands_separatorA string value which indicates being recognized as thousands separator during the conversion of PDF documents to excel format documents.
[in]workbook_settingsAn enumeration value which indicates the setting of the workbook for the conversion of PDF documents to Excel format documents.
Returns
None.

Member Data Documentation

◆ decimal_symbol

FoxitPDFConversionSDKPython3.PDF2ExcelSettingData.decimal_symbol = _fpdfconversionsdk.PDF2ExcelSettingData_decimal_symbol
static

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.

Note
Currently, this parameter is only useful for cells with only numbers and separators. The value of this parameter must be different from the value of parameter thousands_separator. To ensure the correct recognition of the decimal symbol, this parameter should be set together with parameter thousands_separator.

◆ thousands_separator

FoxitPDFConversionSDKPython3.PDF2ExcelSettingData.thousands_separator = _fpdfconversionsdk.PDF2ExcelSettingData_thousands_separator
static

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.

Note
Currently, this parameter is only useful for cells with only numbers and separators. The value of this parameter must be different from the value of parameter decimal_symbol. To ensure the correct recognition of the thousands separator, this parameter should be set together with parameter decimal_symbol.

◆ workbook_settings

FoxitPDFConversionSDKPython3.PDF2ExcelSettingData.workbook_settings = _fpdfconversionsdk.PDF2ExcelSettingData_workbook_settings
static

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 FoxitPDFConversionSDKPython3.PDF2ExcelSettingData.e_WorkbookSettingsDocument and this should be one of these values. Default value: FoxitPDFConversionSDKPython3.PDF2ExcelSettingData.e_WorkbookSettingsEachPage .