Class DataFormMaskedEditTextItem
Represents the class that encapsulates the layout and Masked text editor setting for a data field appearing in SfDataForm.
Inheritance
Implements
Inherited Members
Namespace: Syncfusion.XForms.DataForm
Assembly: Syncfusion.SfDataForm.XForms.dll
Syntax
public class DataFormMaskedEditTextItem : DataFormTextItemBase, IDisposable
Constructors
DataFormMaskedEditTextItem()
Initializes a new instance of the DataFormMaskedEditTextItem class.
Declaration
public DataFormMaskedEditTextItem()
Properties
CultureInfo
Gets or sets the culture info for formatting.
Declaration
public CultureInfo CultureInfo { get; set; }
Property Value
Type |
---|
System.Globalization.CultureInfo |
CutCopyMaskFormat
Gets or sets a value that determines whether literals and prompt characters are copied to the clipboard.
Declaration
public MaskFormat CutCopyMaskFormat { get; set; }
Property Value
Type | Description |
---|---|
MaskFormat | The default value is MaskFormat.IncludeLiterals. |
EnablePasswordDelay
Gets or sets a value indicating whether the password character needs to be displayed with delay when typing.
Declaration
public bool EnablePasswordDelay { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The default value is false. |
Mask
Gets or sets the Mask for the Masked edit text editor.
Declaration
public string Mask { get; set; }
Property Value
Type |
---|
System.String |
MaskType
Gets or sets the mask type for the Masked edit text editor.
Declaration
public MaskType MaskType { get; set; }
Property Value
Type | Description |
---|---|
MaskType | The default value is MaskType.Text. |
PasswordChar
Gets or sets a value to be displayed in substitute of user input.
Declaration
public char PasswordChar { get; set; }
Property Value
Type |
---|
System.Char |
PasswordDelayDuration
Gets or sets the duration of the delay when typing the password character.
Declaration
public double PasswordDelayDuration { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The default value is 1. |
PromptChar
Gets or sets a value to be displayed in substitute of user input.
Declaration
public char PromptChar { get; set; }
Property Value
Type |
---|
System.Char |
SkipLiterals
Gets or sets a value indicating whether the user is allowed to re-enter literal values.
Declaration
public bool SkipLiterals { get; set; }
Property Value
Type |
---|
System.Boolean |
ValueMaskFormat
Gets or sets the mask format for value.
Declaration
public MaskFormat ValueMaskFormat { get; set; }
Property Value
Type | Description |
---|---|
MaskFormat | The default value is MaskFormat.IncludePromptAndLiterals. |