Spread WinRT Documentation
GrapeCity.Xaml.SpreadSheet.Data Namespace / RangeGroupDirection Enumeration
Example Example


In This Topic
    RangeGroupDirection Enumeration
    In This Topic
    Specifies the status of a range group summary row or column position.
    Syntax
    'Declaration
     
    Public Enum RangeGroupDirection 
       Inherits System.Enum
    'Usage
     
    Dim instance As RangeGroupDirection
    public enum RangeGroupDirection : System.Enum 
    Members
    MemberDescription
    Backward[0] The summary row is above or left of the group detail.
    Forward[1] The summary row is below or right of the group detail.
    Example
    This example uses the RangeGroupDirection enumeration.
    gcSpreadSheet1.Sheets[0].RowRangeGroup.Group(3, 2);
    gcSpreadSheet1.Sheets[0].RowRangeGroup.Direction = GrapeCity.Xaml.SpreadSheet.Data.RangeGroupDirection.Backward;
    GcSpreadSheet1.Sheets(0).RowRangeGroup.Group(3, 2)
    GcSpreadSheet1.Sheets(0).RowRangeGroup.Direction = GrapeCity.Xaml.SpreadSheet.Data.RangeGroupDirection.Backward
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             GrapeCity.Xaml.SpreadSheet.Data.RangeGroupDirection

    See Also