LowCodeSaveOptionsProviderOfAssembling Class
Contents
[
Hide
]LowCodeSaveOptionsProviderOfAssembling class
Implementation to provide save options which save split parts to filesand the path of resultant file are named as(it may contains directories):
type LowCodeSaveOptionsProviderOfAssembling struct {
ptr unsafe.Pointer
}
Constructors
Method | Description |
---|---|
NewLowCodeSaveOptionsProviderOfAssembling | Default constructor. |
NewLowCodeSaveOptionsProviderOfAssembling_AbstractLowCodeSaveOptionsProvider | Constructs from a parent object. |
Methods
Method | Description |
---|---|
IsNull | Checks whether the implementation object is nullptr. |
GetPathHeader | Header part(before added content of sheet and split part) of file path. |
SetPathHeader | Header part(before added content of sheet and split part) of file path. |
GetPathTail | Tailing part(after sequence numbers) of file path.It should include extension of file name. |
SetPathTail | Tailing part(after sequence numbers) of file path.It should include extension of file name. |
GetUseSheetName | Whether builds the file path with sheet name instead of sheet index. Default value is false. |
SetUseSheetName | Whether builds the file path with sheet name instead of sheet index. Default value is false. |
GetSheetPrefix | Prefix for the index of worksheet. |
SetSheetPrefix | Prefix for the index of worksheet. |
GetSplitPartPrefix | Prefix for the index of split part. |
SetSplitPartPrefix | Prefix for the index of split part. |
GetSheetIndexOffset | Offset of sheet’s index between what used in file pathand its actual value(SplitPartInfo.SheetIndex). |
SetSheetIndexOffset | Offset of sheet’s index between what used in file pathand its actual value(SplitPartInfo.SheetIndex). |
GetSplitPartIndexOffset | Offset of split part’s index between what used in file pathand its actual value(SplitPartInfo.PartIndex). |
SetSplitPartIndexOffset | Offset of split part’s index between what used in file pathand its actual value(SplitPartInfo.PartIndex). |
GetBuildPathWithSheetAlways | Whether add sheet index or name to file path always.Default value is false, that is, when there is only one sheet,the sheet index(or name) and corresponding prefix will not be added to the file path. |
SetBuildPathWithSheetAlways | Whether add sheet index or name to file path always.Default value is false, that is, when there is only one sheet,the sheet index(or name) and corresponding prefix will not be added to the file path. |
GetBuildPathWithSplitPartAlways | Whether add split part index to file path always.Default value is false, that is, when there is only one split part,the split part index and corresponding prefix will not be added to the file path. |
SetBuildPathWithSplitPartAlways | Whether add split part index to file path always.Default value is false, that is, when there is only one split part,the split part index and corresponding prefix will not be added to the file path. |
GetSaveOptionsTemplate | The template for creating instance of save options in GetSaveOptions(SplitPartInfo). |
SetSaveOptionsTemplate | The template for creating instance of save options in GetSaveOptions(SplitPartInfo). |
GetSaveOptions | Gets the save options from which to get the output settings for currently split part. |
Finish | Releases resources after processing currently split part. |