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