'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.
Property | Description |
---|---|
Grid | 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