Class DataFormAutoGeneratingFieldEventArgs
Event args for the AutoGeneratingField event.
Inheritance
System.Object
DataFormAutoGeneratingFieldEventArgs
Namespace: System.Windows.Controls
Assembly: DataForm.Toolkit.OpenSilver.dll
Syntax
public class DataFormAutoGeneratingFieldEventArgs : CancelEventArgs
Constructors
| Improve this Doc View SourceDataFormAutoGeneratingFieldEventArgs(String, Type, DataField)
Constructs a new instance of DataFormAutoGeneratingFieldEventArgs.
Declaration
public DataFormAutoGeneratingFieldEventArgs(string propertyName, Type propertyType, DataField field)
Parameters
Type | Name | Description |
---|---|---|
System.String | propertyName | The name of the property for the field being generated. |
System.Type | propertyType | The type of the property for the field being generated. |
DataField | field | The field being generated. |
Properties
| Improve this Doc View SourceField
Gets or sets the field to be used.
Declaration
public DataField Field { get; set; }
Property Value
Type | Description |
---|---|
DataField |
PropertyName
Gets the name of the property for which this field is being generated.
Declaration
public string PropertyName { get; }
Property Value
Type | Description |
---|---|
System.String |
PropertyType
Gets the type of the property for which this field is being generated.
Declaration
public Type PropertyType { get; }
Property Value
Type | Description |
---|---|
System.Type |