New to Telerik UI for .NET MAUIStart a free 30-day trial

Organizes the content of a DataFormEditor into columns and rows.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public class DataFormEditorPresenter : RadBorder, IRadBorder, IRadContentView, IContentView, IPadding, ICrossPlatformLayout, IView, IElement, ITransform

Inheritance: objectRadContentViewRadBorderDataFormEditorPresenter

Implements: IContentViewICrossPlatformLayoutIElementIPaddingIRadBorderIRadContentViewITransformIView...

Inherited Members RadBorder.BorderColorPropertyRadBorder.CornerRadiusPropertyRadBorder.BorderThicknessPropertyRadBorder.BorderBrushPropertyRadBorder.ChangeVisualState()RadBorder.BorderColorRadBorder.CornerRadiusRadBorder.BorderThicknessRadBorder.BorderBrushRadContentView.ActualStyleClassPropertyRadContentView.OnChildAdded(Element)RadContentView.OnChildRemoved(Element, int)RadContentView.OnBindingContextChanged()RadContentView.OnHandlerChanged()...

Constructors

Initializes a new instance of the DataFormEditorPresenter class.

C#
public DataFormEditorPresenter()

Fields

ColumnSpacingProperty

BindableProperty

Identifies the ColumnSpacing property.

C#
public static readonly BindableProperty ColumnSpacingProperty

EditorContentProperty

BindableProperty

Identifies the EditorContent property.

C#
public static readonly BindableProperty EditorContentProperty

ErrorContentProperty

BindableProperty

Identifies the ErrorContent property.

C#
public static readonly BindableProperty ErrorContentProperty

ErrorLengthProperty

BindableProperty

Identifies the ErrorLength property.

C#
public static readonly BindableProperty ErrorLengthProperty

ErrorPositionProperty

BindableProperty

Identifies the ErrorPosition property.

C#
public static readonly BindableProperty ErrorPositionProperty

HeaderContentProperty

BindableProperty

Identifies the HeaderContent property.

C#
public static readonly BindableProperty HeaderContentProperty

HeaderLengthProperty

BindableProperty

Identifies the HeaderLength property.

C#
public static readonly BindableProperty HeaderLengthProperty

HeaderPositionProperty

BindableProperty

Identifies the HeaderPosition property.

C#
public static readonly BindableProperty HeaderPositionProperty

RowSpacingProperty

BindableProperty

Identifies the RowSpacing property.

C#
public static readonly BindableProperty RowSpacingProperty

Properties

Gets or sets the horizontal spacing between the columns in the DataFormEditorPresenter.

C#
public double ColumnSpacing { get; set; }

Gets or sets the editor content view in the DataFormEditorPresenter.

C#
public View EditorContent { get; set; }

Gets or sets the error content view in the DataFormEditorPresenter.

C#
public View ErrorContent { get; set; }

ErrorLength

GridLength

Gets or sets the length of the error indicator in the editor. This property has an effect only when the ErrorPosition property is set to Beside. You can specify absolute values in pixels or weighted values followed by the asterisk symbol "". For instance, the value of "0.1" specifies that the error length should be 10% from the length of the corresponding editor. The special value "Auto" specifies that the error length should be computed automatically for each error indicator, based on the actual error size requirements.

C#
[TypeConverter(typeof(GridLengthTypeConverter))]
public GridLength ErrorLength { get; set; }

Gets or sets a value specifying the relative position of the error indicator in the DataFormEditorPresenter. For more information see the DataFormErrorPosition type.

C#
public DataFormErrorPosition ErrorPosition { get; set; }

Gets or sets the header content view in the DataFormEditorPresenter.

C#
public View HeaderContent { get; set; }

HeaderLength

GridLength

Gets or sets the length of the header view in the editor. This property has an effect only when the HeaderPosition property is set to Beside. You can specify absolute values in pixels or weighted values followed by the asterisk symbol "". For instance, the value of "0.5" specifies that the header length should be 50% from the length of the corresponding editor. The special value "Auto" specifies that the header length should be computed automatically for the header view, based on the actual header size requirements.

C#
[TypeConverter(typeof(GridLengthTypeConverter))]
public GridLength HeaderLength { get; set; }

Gets or sets a value specifying the relative position of the header view in the DataFormEditorPresenter. For more information see the DataFormHeaderPosition type.

C#
public DataFormHeaderPosition HeaderPosition { get; set; }

Gets or sets the vertical spacing between the rows in the DataFormEditorPresenter.

C#
public double RowSpacing { get; set; }