TextEdit.TextInputSettings Property
Provides access to the edit settings. This is a dependency property.
Namespace: DevExpress.UI.Xaml.Editors
Assembly: DevExpress.UI.Xaml.Editors.v21.2.dll
NuGet Package: DevExpress.Uwp.Controls
Declaration
Property Value
Type | Description |
---|---|
DevExpress.UI.Xaml.Editors.TextInputBaseSettings | A DevExpress.UI.Xaml.Editors.TextInputBaseSettings object containing the edit settings of the TextEdit editor. |
Remarks
Use the TextInputSettings property to specify edit options (e.g., to enable masked input).
<Editors:TextEdit>
<Editors:TextEdit.TextInputSettings>
<Editors:TextInputMaskSettings MaskType="RegEx" Mask="((\+\d)?\(\d{3}\))?\d{3}-\d\d-\d\d" />
</Editors:TextEdit.TextInputSettings>
</Editors:TextEdit>
See Also