Class
DataFormGroupGeneratedEventArgs

Event arguments allowing to customize the generated DataFormGroup in the RadDataForm.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

cs-api-definition
public class DataFormGroupGeneratedEventArgs : EventArgs

Inheritance: objectEventArgsDataFormGroupGeneratedEventArgs

Inherited Members EventArgs.Empty

Constructors

DataFormGroupGeneratedEventArgs(string)

Initializes a new instance of the DataFormGroupGeneratedEventArgs class.

Declaration

cs-api-definition
public DataFormGroupGeneratedEventArgs(string groupName)

Parameters

groupName

string

Specifies the unique name of the group to generate.

DataFormGroupGeneratedEventArgs(string, DataFormGroup)

Initializes a new instance of the DataFormGroupGeneratedEventArgs class.

Declaration

cs-api-definition
public DataFormGroupGeneratedEventArgs(string groupName, DataFormGroup defaultGroup)

Parameters

groupName

string

Specifies the unique name of the group to generate.

defaultGroup

DataFormGroup

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

cs-api-definition
public DataFormGroup Group { get; set; }

Property Value

DataFormGroup

GroupName

Gets the unique name of the group to generate.

Declaration

cs-api-definition
public string GroupName { get; }

Property Value

string