Event arguments allowing to customize the generated DataFormGroup in the RadDataForm.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public class DataFormGroupGeneratedEventArgs : EventArgs
Inheritance: objectEventArgsDataFormGroupGeneratedEventArgs
Inherited Members
Constructors
Initializes a new instance of the DataFormGroupGeneratedEventArgs class.
C#
public DataFormGroupGeneratedEventArgs(string groupName, DataFormGroup defaultGroup)
Specifies the unique name of the group to generate.
defaultGroupDataFormGroupSpecifies the default group, which is generated for the specified unique name.
Initializes a new instance of the DataFormGroupGeneratedEventArgs class.
C#
public DataFormGroupGeneratedEventArgs(string groupName)
Specifies the unique name of the group to generate.
Properties
Gets or sets the group, which is generated for the specified unique name. To skip the generation of the group, set this property to null.
C#
public DataFormGroup Group { get; set; }