Class DataFormItemManager
Interface holds the ItemManager.
Inheritance
System.Object
DataFormItemManager
Namespace: Syncfusion.Maui.DataForm
Assembly: Syncfusion.Maui.DataForm.dll
Syntax
public abstract class DataFormItemManager : Object
Constructors
DataFormItemManager()
Declaration
protected DataFormItemManager()
Methods
GetValue(DataFormItem)
Method to get the value from dictionary to the data form editor.
Declaration
public virtual object GetValue(DataFormItem dataFormItem)
Parameters
Type | Name | Description |
---|---|---|
DataFormItem | dataFormItem | The data form item. |
Returns
Type | Description |
---|---|
System.Object | The dictionary value |
InitializeDataEditor(DataFormItem, View)
Method to initialize editor view.
Declaration
public virtual void InitializeDataEditor(DataFormItem dataFormItem, View editor)
Parameters
Type | Name | Description |
---|---|---|
DataFormItem | dataFormItem | The data form item. |
Microsoft.Maui.Controls.View | editor | The editor view. |
Remarks
This is applicable when the properties other than EditorTextStyle of a editor need to be customized.
InitializeDataLabel(DataFormItem, Label)
Method to initialize the label view settings for the Default layout.
Declaration
public virtual void InitializeDataLabel(DataFormItem dataFormItem, Label label)
Parameters
Type | Name | Description |
---|---|---|
DataFormItem | dataFormItem | The data form item. |
Microsoft.Maui.Controls.Label | label | The label view. |
Remarks
This is applicable when the properties other than LabelTextStyle of a label need to be customized.
SetValue(DataFormItem, Object)
Method to set the data form editor value to the dictionary.
Declaration
public virtual void SetValue(DataFormItem dataFormItem, object value)
Parameters
Type | Name | Description |
---|---|---|
DataFormItem | dataFormItem | The data form item. |
System.Object | value | The editors value to commit in dictionary. |