Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid Namespace / DetailGrid Class / DetailGrid Constructor / DetailGrid Constructor(DetailGrid,DetailGrid)
A reference to a DetailGrid object that will be used to create other detail grids.
The DetailGrid which will be used as the synchronization root. The DetailGrid that is used as the synchronization root will not appear in the grid but will be consulted whenever an operation such as sorting or grouping is performed on any of the detail grids of the same level (all the detail grids built from the same template).


In This Topic
    DetailGrid Constructor(DetailGrid,DetailGrid)
    In This Topic
    Initializes a new instance of the DetailGrid class specifying the template that will be used to create other detail grids.
    Syntax
    'Declaration
     
    Protected Function New( _
       ByVal template As DetailGrid, _
       ByVal synchronizationRoot As DetailGrid _
    )
    'Usage
     
    Dim template As DetailGrid
    Dim synchronizationRoot As DetailGrid
     
    Dim instance As New DetailGrid(template, synchronizationRoot)
    protected DetailGrid( 
       DetailGrid template,
       DetailGrid synchronizationRoot
    )

    Parameters

    template
    A reference to a DetailGrid object that will be used to create other detail grids.
    synchronizationRoot
    The DetailGrid which will be used as the synchronization root. The DetailGrid that is used as the synchronization root will not appear in the grid but will be consulted whenever an operation such as sorting or grouping is performed on any of the detail grids of the same level (all the detail grids built from the same template).
    Remarks

    If the SynchronizeDetailGrids property is set to false, then there is no synchronization root.

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also