ClassDataFormEditorPresenter
Organizes the content of a DataFormEditor into columns and rows.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
public class DataFormEditorPresenter : RadBorder, IRadBorder, IRadContentView, IContentView, IPadding, ICrossPlatformLayout, IView, IElement, ITransform
Inheritance: objectRadContentViewRadBorderDataFormEditorPresenter
Implements:
Inherited Members
Constructors
DataFormEditorPresenter()
Initializes a new instance of the DataFormEditorPresenter class.
Declaration
public DataFormEditorPresenter()
Fields
ColumnSpacingProperty
Identifies the ColumnSpacing property.
Declaration
public static readonly BindableProperty ColumnSpacingProperty
Field Value
BindableProperty
EditorContentProperty
Identifies the EditorContent property.
Declaration
public static readonly BindableProperty EditorContentProperty
Field Value
BindableProperty
ErrorContentProperty
Identifies the ErrorContent property.
Declaration
public static readonly BindableProperty ErrorContentProperty
Field Value
BindableProperty
ErrorLengthProperty
Identifies the ErrorLength property.
Declaration
public static readonly BindableProperty ErrorLengthProperty
Field Value
BindableProperty
ErrorPositionProperty
Identifies the ErrorPosition property.
Declaration
public static readonly BindableProperty ErrorPositionProperty
Field Value
BindableProperty
HeaderContentProperty
Identifies the HeaderContent property.
Declaration
public static readonly BindableProperty HeaderContentProperty
Field Value
BindableProperty
HeaderLengthProperty
Identifies the HeaderLength property.
Declaration
public static readonly BindableProperty HeaderLengthProperty
Field Value
BindableProperty
HeaderPositionProperty
Identifies the HeaderPosition property.
Declaration
public static readonly BindableProperty HeaderPositionProperty
Field Value
BindableProperty
RowSpacingProperty
Identifies the RowSpacing property.
Declaration
public static readonly BindableProperty RowSpacingProperty
Field Value
BindableProperty
Properties
ColumnSpacing
Gets or sets the horizontal spacing between the columns in the DataFormEditorPresenter.
EditorContent
Gets or sets the editor content view in the DataFormEditorPresenter.
Declaration
public View EditorContent { get; set; }
Property Value
View
ErrorContent
Gets or sets the error content view in the DataFormEditorPresenter.
Declaration
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
[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
public DataFormErrorPosition ErrorPosition { get; set; }
Property Value
HeaderContent
Gets or sets the header content view in the DataFormEditorPresenter.
Declaration
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
[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
public DataFormHeaderPosition HeaderPosition { get; set; }
Property Value
RowSpacing
Gets or sets the vertical spacing between the rows in the DataFormEditorPresenter.