Skip to main content
All docs
V21.2
  • TextInputMaskSettings.AutoComplete Property

    Specifies whether automatic completion is enabled. This is a dependency property.

    Namespace: DevExpress.UI.Xaml.Editors

    Assembly: DevExpress.UI.Xaml.Editors.v21.2.dll

    NuGet Package: DevExpress.Uwp.Controls

    Declaration

    public AutoCompleteType AutoComplete { get; set; }

    Property Value

    Type Description
    AutoCompleteType

    true, to enable automatic completion; otherwise, false.

    Available values:

    Name Description
    Default

    When set to Default, the AutoCompleteType.Strong automatic completion mode is used.

    None

    The automatic completion feature is disabled.

    Strong

    Each time an end-user types a character, the editor determines if the following placeholder can be filled automatically. If only a specific character can be inserted in this position, the editor automatically displays this character, and moves the caret to the right of this character.

    Optimistic

    When an end-user enters a character in an empty edit box for the first time, the editor automatically fills all the following placeholders with the default values. For placeholders that accept only numeric values, the ‘0’ character is the default. For placeholders that accept word characters, the “a” character is the default.

    See Also