New to Telerik UI for .NET MAUIStart a free 30-day trial

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 EventArgs.Empty

Constructors

Initializes a new instance of the DataFormGroupGeneratedEventArgs class.

C#
public DataFormGroupGeneratedEventArgs(string groupName, DataFormGroup defaultGroup)
Parameters:groupNamestring

Specifies the unique name of the group to generate.

defaultGroupDataFormGroup

Specifies the default group, which is generated for the specified unique name.

Initializes a new instance of the DataFormGroupGeneratedEventArgs class.

C#
public DataFormGroupGeneratedEventArgs(string groupName)
Parameters:groupNamestring

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; }

Gets the unique name of the group to generate.

C#
public string GroupName { get; }