ClassDataFormEditorGeneratedEventArgs
Event arguments allowing to customize the generated DataFormEditor for a given property in the RadDataForm.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
public class DataFormEditorGeneratedEventArgs : EventArgs
Inheritance: objectEventArgsDataFormEditorGeneratedEventArgs
Inherited Members
Constructors
DataFormEditorGeneratedEventArgs(string, Type)
Initializes a new instance of the DataFormEditorGeneratedEventArgs class.
Declaration
public DataFormEditorGeneratedEventArgs(string propertyName, Type propertyType)
Parameters
propertyName
Specifies the name of the property from the data model, for which to generate an editor.
propertyType
Specifies the type of the property from the data model, for which to generate an editor.
DataFormEditorGeneratedEventArgs(string, Type, DataFormEditor)
Initializes a new instance of the DataFormEditorGeneratedEventArgs class.
Declaration
public DataFormEditorGeneratedEventArgs(string propertyName, Type propertyType, DataFormEditor defaultEditor)
Parameters
propertyName
Specifies the name of the property from the data model, for which to generate an editor.
propertyType
Specifies the type of the property from the data model, for which to generate an editor.
defaultEditor
Specifies the default editor, which is generated for the specified property.
Properties
Editor
Gets or sets the editor, which is generated for the specified property. To skip the generation of the editor, set this property to null.
Declaration
public DataFormEditor Editor { get; set; }
Property Value
PropertyName
Gets the name of property from the data model, for which to generate an editor.
PropertyType
Gets the type of property from the data model, for which to generate an editor.