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