Class
DataFormEditorPresenter

Organizes the content of a DataFormEditor into columns and rows.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

cs-api-definition
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

DataFormEditorPresenter()

Initializes a new instance of the DataFormEditorPresenter class.

Declaration

cs-api-definition
public DataFormEditorPresenter()

Fields

ColumnSpacingProperty

Identifies the ColumnSpacing property.

Declaration

cs-api-definition
public static readonly BindableProperty ColumnSpacingProperty

Field Value

BindableProperty

EditorContentProperty

Identifies the EditorContent property.

Declaration

cs-api-definition
public static readonly BindableProperty EditorContentProperty

Field Value

BindableProperty

ErrorContentProperty

Identifies the ErrorContent property.

Declaration

cs-api-definition
public static readonly BindableProperty ErrorContentProperty

Field Value

BindableProperty

ErrorLengthProperty

Identifies the ErrorLength property.

Declaration

cs-api-definition
public static readonly BindableProperty ErrorLengthProperty

Field Value

BindableProperty

ErrorPositionProperty

Identifies the ErrorPosition property.

Declaration

cs-api-definition
public static readonly BindableProperty ErrorPositionProperty

Field Value

BindableProperty

HeaderContentProperty

Identifies the HeaderContent property.

Declaration

cs-api-definition
public static readonly BindableProperty HeaderContentProperty

Field Value

BindableProperty

HeaderLengthProperty

Identifies the HeaderLength property.

Declaration

cs-api-definition
public static readonly BindableProperty HeaderLengthProperty

Field Value

BindableProperty

HeaderPositionProperty

Identifies the HeaderPosition property.

Declaration

cs-api-definition
public static readonly BindableProperty HeaderPositionProperty

Field Value

BindableProperty

RowSpacingProperty

Identifies the RowSpacing property.

Declaration

cs-api-definition
public static readonly BindableProperty RowSpacingProperty

Field Value

BindableProperty

Properties

ColumnSpacing

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

Declaration

cs-api-definition
public double ColumnSpacing { get; set; }

Property Value

double

EditorContent

Gets or sets the editor content view in the DataFormEditorPresenter.

Declaration

cs-api-definition
public View EditorContent { get; set; }

Property Value

View

ErrorContent

Gets or sets the error content view in the DataFormEditorPresenter.

Declaration

cs-api-definition
public View ErrorContent { get; set; }

Property Value

View

ErrorLength

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.

Declaration

cs-api-definition
[TypeConverter(typeof(GridLengthTypeConverter))]
public GridLength ErrorLength { get; set; }

Property Value

GridLength

ErrorPosition

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

Declaration

cs-api-definition
public DataFormErrorPosition ErrorPosition { get; set; }

Property Value

DataFormErrorPosition

HeaderContent

Gets or sets the header content view in the DataFormEditorPresenter.

Declaration

cs-api-definition
public View HeaderContent { get; set; }

Property Value

View

HeaderLength

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.

Declaration

cs-api-definition
[TypeConverter(typeof(GridLengthTypeConverter))]
public GridLength HeaderLength { get; set; }

Property Value

GridLength

HeaderPosition

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

Declaration

cs-api-definition
public DataFormHeaderPosition HeaderPosition { get; set; }

Property Value

DataFormHeaderPosition

RowSpacing

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

Declaration

cs-api-definition
public double RowSpacing { get; set; }

Property Value

double