Xceed Grid for WinForms v4.3 Documentation
InitializingDetailGrid Event (GridControl)


Xceed.Grid.v4.3 Assembly > Xceed.Grid Namespace > GridControl Class : InitializingDetailGrid Event
Raised for each DataRow about to be added to the grid to initialize its detail grid(s).
Syntax
'Declaration
 
<DescriptionAttribute("Raised for each DataRow about to be added to the grid to initialize its detail grid(s).")>
<CategoryAttribute("Data")>
Public Event InitializingDetailGrid As InitializingDetailGridEventHandler
'Usage
 
Dim instance As GridControl
Dim handler As InitializingDetailGridEventHandler
 
AddHandler instance.InitializingDetailGrid, handler
[Description("Raised for each DataRow about to be added to the 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