XLSXLayoutRetentionModeEnum
XLSXLayoutRetentionModeEnum enumeration constants are used to describe available modes of retaining original document tables’ formatting during export to XLSX.
typedef enum {
XLLRM_Default,
XLLRM_ExactDocument,
XLLRM_ExactLines
} XLSXLayoutRetentionModeEnum;
Elements
Name | Description |
---|---|
XLLRM_Default | No specific settings. In this mode you can fine-tune the tables’ layout using other properties of the XLExportParams object. See its description for details. |
XLLRM_ExactDocument | Optimized for recreating the appearance of the original document, but does not necessarily retain the exact cells and lines of the original tables. |
XLLRM_ExactLines | Optimized for recreating the exact division into cells/lines of the original document tables. |
Used in
9/17/2024 3:14:40 PM