Class DataFormCheckBoxEditor
Represents a class to handle the boolean type property editor with CheckBox.
Implements
System.IDisposable
Inherited Members
Namespace: Syncfusion.Android.DataForm.Editors
Assembly: Syncfusion.SfDataForm.Android.dll
Syntax
public class DataFormCheckBoxEditor : DataFormEditor<CheckBox>, IDisposable
Constructors
DataFormCheckBoxEditor(SfDataForm)
Initializes a new instance of the DataFormCheckBoxEditor class.
Declaration
public DataFormCheckBoxEditor(SfDataForm dataForm)
Parameters
Type | Name | Description |
---|---|---|
SfDataForm | dataForm | The DataForm |
Methods
OnCommitValue(CheckBox)
Commits the value of the specific editor to corresponding property in the business object.
Declaration
protected override void OnCommitValue(CheckBox view)
Parameters
Type | Name | Description |
---|---|---|
Android.Widget.CheckBox | view | the editor. |
Overrides
Syncfusion.Android.DataForm.Editors.DataFormEditor<Android.Widget.CheckBox>.OnCommitValue(Android.Widget.CheckBox)
OnCreateEditorView()
Create and return a new instance of the Android.Widget.CheckBox.
Declaration
protected override CheckBox OnCreateEditorView()
Returns
Type | Description |
---|---|
Android.Widget.CheckBox | Returns the Android.Widget.CheckBox editor. |
Overrides
Syncfusion.Android.DataForm.Editors.DataFormEditor<Android.Widget.CheckBox>.OnCreateEditorView()
OnInitializeView(DataFormItem, CheckBox)
Initialize View with DataFormItem property info.
Declaration
protected override void OnInitializeView(DataFormItem dataFormItem, CheckBox view)
Parameters
Type | Name | Description |
---|---|---|
DataFormItem | dataFormItem | The dataFormItem is property info of Editor |
Android.Widget.CheckBox | view | The view. |
Overrides
Syncfusion.Android.DataForm.Editors.DataFormEditor<Android.Widget.CheckBox>.OnInitializeView(Syncfusion.Android.DataForm.DataFormItem, Android.Widget.CheckBox)
OnUnWireEvents(CheckBox)
UnWires events for DataFormItemView's editor view.
Declaration
protected override void OnUnWireEvents(CheckBox view)
Parameters
Type | Name | Description |
---|---|---|
Android.Widget.CheckBox | view | The view to unwire the events |
Overrides
Syncfusion.Android.DataForm.Editors.DataFormEditor<Android.Widget.CheckBox>.OnUnWireEvents(Android.Widget.CheckBox)
OnUpdateValue(DataFormItem, CheckBox)
Declaration
protected override void OnUpdateValue(DataFormItem dataFormItem, CheckBox view)
Parameters
Type | Name | Description |
---|---|---|
DataFormItem | dataFormItem | |
Android.Widget.CheckBox | view |
Overrides
Syncfusion.Android.DataForm.Editors.DataFormEditor<Android.Widget.CheckBox>.OnUpdateValue(Syncfusion.Android.DataForm.DataFormItem, Android.Widget.CheckBox)
OnValidateValue(CheckBox)
Validates the value of the specific editor to corresponding property in the business object.
Declaration
protected override bool OnValidateValue(CheckBox view)
Parameters
Type | Name | Description |
---|---|---|
Android.Widget.CheckBox | view | the editor. |
Returns
Type |
---|
System.Boolean |
Overrides
Syncfusion.Android.DataForm.Editors.DataFormEditor<Android.Widget.CheckBox>.OnValidateValue(Android.Widget.CheckBox)
OnWireEvents(CheckBox)
Wires events for DataFormItemView's editor view.
Declaration
protected override void OnWireEvents(CheckBox view)
Parameters
Type | Name | Description |
---|---|---|
Android.Widget.CheckBox | view | The view to wire the events. |
Overrides
Syncfusion.Android.DataForm.Editors.DataFormEditor<Android.Widget.CheckBox>.OnWireEvents(Android.Widget.CheckBox)
Implements
System.IDisposable