DataLayoutControl.AutoGeneratingItem Event
In This Article
Allows you to customize a layout item when its auto generation has been completed.
Namespace: DevExpress.Xpf.LayoutControl
Assembly: DevExpress.Xpf.LayoutControl.v24.2.dll
NuGet Package: DevExpress.Wpf.LayoutControl
#Declaration
public event EventHandler<DataLayoutControlAutoGeneratingItemEventArgs> AutoGeneratingItem
#Event Data
The AutoGeneratingItem event's data class is DataLayoutControlAutoGeneratingItemEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Cancel |
Gets or sets a value indicating whether the event should be canceled.
Inherited from Cancel |
Item | Gets or sets the item that has been generated. |
Property |
Gets the name of the property to which the generated layout item is bound. |
Property |
Gets the type of the bound property. |
#Remarks
Set the Cancel property to true to undo the automatic layout item generation.
See Also