Skip to main content

TextEdit.TextInputSettings Property

Provides access to the edit settings. This is a dependency property.

Namespace: DevExpress.WinUI.Editors

Assembly: DevExpress.WinUI.Editors.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

[DP(null, Handler = "OnTextInputSettingsChanged")]
public TextInputBaseSettings TextInputSettings { get; set; }

Property Value

Type Description
DevExpress.WinUI.Editors.TextInputBaseSettings

A DevExpress.WinUI.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