Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid Namespace / DetailGrid Class / InitializingDetailGrid Event


In This Topic
    InitializingDetailGrid Event (DetailGrid)
    In This Topic
    Raised for each DataRow about to be added to the detail grid to initialize its detail grid(s).
    Syntax
    'Declaration
     
    <DescriptionAttribute("Raised for each DataRow about to be added to the detail grid to initialize its detail grid(s).")>
    <CategoryAttribute("Data")>
    Public Event InitializingDetailGrid As InitializingDetailGridEventHandler
    'Usage
     
    Dim instance As DetailGrid
    Dim handler As InitializingDetailGridEventHandler
     
    AddHandler instance.InitializingDetailGrid, handler
    [Description("Raised for each DataRow about to be added to the detail grid to initialize its detail grid(s).")]
    [Category("Data")]
    public event InitializingDetailGridEventHandler InitializingDetailGrid
    Event Data

    The event handler receives an argument of type InitializingDetailGridEventArgs containing data related to this event. The following InitializingDetailGridEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets a reference to a DetailGrid object representing the detail grid that is about to be "attached" to a DataRow.  
    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