Foxit PDF Conversion SDK
|
Public Member Functions | |
PDF2ExcelSettingData () | |
Constructor. | |
PDF2ExcelSettingData (String decimal_symbol, String thousands_separator) | |
Constructor, with parameters. More... | |
synchronized void | delete () |
Clean up related resources immediately. More... | |
String | getDecimal_symbol () |
Get a string value which indicates being recognized as decimal during the conversion of PDF documents to excel format documents. More... | |
String | getThousands_separator () |
Get a string value which indicates being recognized as thousands separator during the conversion of PDF documents to excel format documents. More... | |
void | set (String decimal_symbol, String thousands_separator) |
Set value. More... | |
void | setDecimal_symbol (String value) |
Set a string value which indicates being recognized as decimal during the conversion of PDF documents to excel format documents. More... | |
void | setThousands_separator (String value) |
Set a string value which indicates being recognized as thousands separator during the conversion of PDF documents to excel format documents. More... | |
This class represents setting data used for converting PDF documents to Excel format documents.
com.foxit.sdk.conversion.pdf2office.PDF2ExcelSettingData.PDF2ExcelSettingData | ( | String | decimal_symbol, |
String | thousands_separator | ||
) |
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. |
synchronized void com.foxit.sdk.conversion.pdf2office.PDF2ExcelSettingData.delete | ( | ) |
Clean up related resources immediately.
com.foxit.sdk.conversion.pdf2office.PDF2ExcelSettingData.getDecimal_symbol | ( | ) |
Get 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.
com.foxit.sdk.conversion.pdf2office.PDF2ExcelSettingData.getThousands_separator | ( | ) |
Get 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.
void com.foxit.sdk.conversion.pdf2office.PDF2ExcelSettingData.set | ( | String | decimal_symbol, |
String | thousands_separator | ||
) |
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. |
com.foxit.sdk.conversion.pdf2office.PDF2ExcelSettingData.setDecimal_symbol | ( | String | value | ) |
Set 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.
[in] | value | A string value which indicates being recognized as decimal during the conversion of PDF documents to excel format documents. |
com.foxit.sdk.conversion.pdf2office.PDF2ExcelSettingData.setThousands_separator | ( | String | value | ) |
Set 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.
[in] | value | A string value which indicates being recognized as thousands separator during the conversion of PDF documents to excel format documents. |