Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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

C#
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