Show / Hide Table of Contents

Class DataFormAutoGeneratingFieldEventArgs

Event args for the AutoGeneratingField event.

Inheritance
System.Object
System.EventArgs
System.ComponentModel.CancelEventArgs
DataFormAutoGeneratingFieldEventArgs
Inherited Members
System.ComponentModel.CancelEventArgs.Cancel
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: System.Windows.Controls
Assembly: OpenSilver.Controls.Data.DataForm.Toolkit.dll
Syntax
public class DataFormAutoGeneratingFieldEventArgs : CancelEventArgs

Constructors

| Improve this Doc View Source

DataFormAutoGeneratingFieldEventArgs(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 Source

Field

Gets or sets the field to be used.

Declaration
public DataField Field { get; set; }
Property Value
Type Description
DataField
| Improve this Doc View Source

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
| Improve this Doc View Source

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
  • Improve this Doc
  • View Source