Class DataFormGroupGeneratedEventArgs
Event arguments allowing to customize the generated DataFormGroup in the RadDataForm.
Inheritance
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public class DataFormGroupGeneratedEventArgs : EventArgs
Constructors
DataFormGroupGeneratedEventArgs(String)
Initializes a new instance of the DataFormGroupGeneratedEventArgs class.
Declaration
public DataFormGroupGeneratedEventArgs(string groupName)
Parameters
System.String
groupName
Specifies the unique name of the group to generate. |
DataFormGroupGeneratedEventArgs(String, DataFormGroup)
Initializes a new instance of the DataFormGroupGeneratedEventArgs class.
Declaration
public DataFormGroupGeneratedEventArgs(string groupName, DataFormGroup defaultGroup)
Parameters
System.String
groupName
Specifies the unique name of the group to generate. |
DataFormGroup
defaultGroup
Specifies the default group, which is generated for the specified unique name. |
Properties
Group
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.
Declaration
public DataFormGroup Group { get; set; }
Property Value
DataFormGroup
|
GroupName
Gets the unique name of the group to generate.
Declaration
public string GroupName { get; }
Property Value
System.String
|