ComponentOne AutoComplete for ASP.NET Web Forms
C1.C1Report.4 Assembly / C1.C1Report Namespace / Group Class / Move Method
Contains the new position for the group (index into the C1Report.Groups collection).
Determines whether only the group should be moved or whether its header and footer sections, along with all the fields in those sections, should also be moved.

In This Topic
    Move Method
    In This Topic
    Moves a group to a new position in the C1Report.Groups collection, optionally adjusting its C1Report.Sections and C1Report.Fields.
    Syntax
    'Declaration
     
    Public Sub Move( _
       ByVal newIndex As System.Integer, _
       ByVal adjustSections As System.Boolean _
    ) 
    public void Move( 
       System.int newIndex,
       System.bool adjustSections
    )

    Parameters

    newIndex
    Contains the new position for the group (index into the C1Report.Groups collection).
    adjustSections
    Determines whether only the group should be moved or whether its header and footer sections, along with all the fields in those sections, should also be moved.
    Remarks
    This method is useful in designer applications, when you want to allow users to change the grouping order.
    See Also