C1.Win.FlexGrid Namespace / FileFlags Enumeration

FileFlags Enumeration
Specifies options for use with the Extensions.SaveGrid and Extensions.LoadGrid methods.
Syntax
'Declaration
 
Public Enum FileFlags 
   Inherits System.Enum
 
Members
MemberDescription
AsDisplayedSave values as displayed (including formatting and mapping where available). This flag has no effect when saving text files, which always contain values as displayed.
DataOnlySave only data, except images.
ExcludeEmptyRowsExclude empty rows when exporting to XLSX/XLS/CSV file.
IncludeFixedCellsInclude fixed cells when loading or saving the grid.
IncludeMergedRangesSave and load merged ranges when exporting to or importing from Excel with the Extensions.SaveExcel and Extensions.LoadExcel methods.
LoadAsTransposedLoad grid as transposed.
LoadMergedRangesLoad merged ranges when importing from Excel with the Extensions.LoadExcel method. This flag has no effect when loading text files, it only affects Excel input.
NoFreezingDo not freeze rows and columns when exporting to or importing from Excel with the Extensions.SaveExcel and Extensions.LoadExcel methods.
NoneUse default settings.
OpenXmlLoad or save file in OpenXml (Office 2007) format.
OutlineSave nodes as Excel groups when exporting to Excel.
SaveMergedRangesSave merged ranges when exporting to Excel with the Extensions.SaveExcel method. This flag has no effect when saving text files, it only affects Excel output.
SelectedRangesOnlySave only selected ranges.
SelectedRowsOnlySave only selected rows.
VisibleOnlySave only visible rows and columns.
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         C1.Win.FlexGrid.FileFlags

See Also