Class AutoGeneratingFieldEventArgs
Provides data for the AutoGeneratingField event.
Inheritance
Namespace: Telerik.Windows.Controls.Data.DataForm
Assembly: Telerik.Windows.Controls.Data.dll
Syntax
public class AutoGeneratingFieldEventArgs : CancelEventArgs
Constructors
AutoGeneratingFieldEventArgs(String, Type, DataFormDataField)
Initializes a new instance of the AutoGeneratingFieldEventArgs class.
Declaration
public AutoGeneratingFieldEventArgs(string propertyName, Type propertyType, DataFormDataField dataField)
Parameters
System.String
propertyName
|
System.Type
propertyType
|
DataFormDataField
dataField
|
Properties
DataField
Gets or sets the data field.
Declaration
public DataFormDataField DataField { get; set; }
Property Value
DataFormDataField
|
Order
Gets or sets the display order of the field.
Declaration
public Nullable<int> Order { get; set; }
Property Value
System.Nullable<System.Int32>
|
PropertyName
Gets or sets the property name.
Declaration
public string PropertyName { get; set; }
Property Value
System.String
|
PropertyType
Gets or sets the property type.
Declaration
public Type PropertyType { get; set; }
Property Value
System.Type
|