FlexGrid for WPF | ComponentOne
C1.WPF.Grid.Excel Assembly / C1.WPF.Grid Namespace / GridRowColRangesOptions Enumeration

In This Topic
    GridRowColRangesOptions Enumeration
    In This Topic
    Specifies options available for customizing the excel output when grid is exported.
    Syntax
    'Declaration
     
    Public Enum GridRowColRangesOptions 
       Inherits System.Enum
    public enum GridRowColRangesOptions : System.Enum 
    Members
    MemberDescription
    ExcludeEmptyRepresents an option that opts-in for excluding empty row(s) in the rendered output file. This only affects row ranges.
    ExludeRangeRepresents an option that opts-in for treating any explicit ranges as exclusive; meaning those column(s) and/or row(s) in the range will not be rendered in the output file. By default, any specified range(s) are inclusive; meaning that only those column(s) and/or row(s) in the range will be rendered in the output file.
    NoneRepresents an option where no options are truly set for row(s) and/or column(s).
    RenderFrozenRepresents an option that opts-in for rendering the frozen row(s) and/or column(s) in the output file. If a combination of other flags is used as well, the frozen indexes are affected by that option as well.
    RenderGroupsRepresents an option that opts-in for including grouped row(s) in the rendered output file. This only affects row ranges.
    SelectedOnlyRepresents an option that opts-in for rendering only the selected row(s) and/or column(s) in the output file. If it is set for only either row(s) or column(s), only row(s) or column(s) that have a selected cell in them will be rendered in the output file. If it is set for both row(s) and column(s), only the cell(s) in the selected range will be rendered in the output file.
    VisibleOnlyRepresents an option that opts-in for rendering only visible row(s) and/or column(s) in the output file.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.WPF.Grid.GridRowColRangesOptions

    See Also