Skip to main content
A newer version of this page is available. .

GridSplitContainer.SplitViewCreated Event

Fires before a Split View is displayed or before its orientation is changed.

Namespace: DevExpress.XtraGrid

Assembly: DevExpress.XtraGrid.v19.2.dll

Declaration

[DXCategory("Split")]
public event EventHandler SplitViewCreated

Event Data

The SplitViewCreated event's data class is EventArgs.

Remarks

After an end-user activates a Split View or after the GridSplitContainer.ShowSplitView method is called, the following events fire:

  1. SplitViewCreated - fires after the Split View is created, but before it is displayed. You can handle this event to perform additional customization of the grid control’s (GridSplitContainer.Grid and GridSplitContainer.SplitChildGrid) being split, without any flickering effect.
  2. GridSplitContainer.SplitViewShown - fires after the Split View has been displayed.

If the Split View is active and you toggle the GridSplitContainer.Horizontal property, the following events fire:

  1. GridSplitContainer.SplitViewHidden
  2. SplitViewCreated
  3. GridSplitContainer.SplitViewShown
See Also