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