Skip to main content

DataFormView.IsAutoGenerationEnabled Property

Gets or sets whether the DataFormView automatically generates data form items (data editors) for the DataObject properties.

Namespace: DevExpress.Maui.DataForm

Assembly: DevExpress.Maui.Editors.dll

NuGet Package: DevExpress.Maui.Editors

Declaration

public bool IsAutoGenerationEnabled { get; set; }

Property Value

Type Default Description
Boolean true

true if the DataFormView generates data editors for the bound data object’s properties; otherwise, false.

Remarks

The following table lists data types and corresponding editors:

Property Value Type

Data Form Item

Editor

String, Char

DataFormTextItem

TextEdit

Numeric[1]

DataFormNumericItem

NumericEdit

Bool

DataFormSwitchItem

Switch

DateTime

DataFormDateItem

DateEdit

TimeSpan

DataFormTimeItem

TimeEdit

Enum

DataFormComboBoxItem

ComboBoxEdit

For more information about DataForm editors, refer to the following help topic: Data Editors in DevExpress Data Form for .NET MAUI.

Footnotes
  1. Byte, Decimal, Double, Int16, Int32, Int64, SByte, Single, UInt16, UInt32, UInt64.

See Also