Search Results for

    Show / Hide Table of Contents

    Interface ITextValidateProvider

    TextValidateField Providers Interface. All TextValidateField are created with a ITextValidateProvider.
    Namespace: Terminal.Gui.TextValidateProviders
    Assembly: Terminal.Gui.dll
    Syntax
    public interface ITextValidateProvider

    Properties

    | Edit this page View Source

    DisplayText

    Gets the formatted string for display.
    Declaration
    ustring DisplayText { get; }
    Property Value
    Type Description
    ustring
    | Edit this page View Source

    Fixed

    Set that this provider uses a fixed width. e.g. Masked ones are fixed.
    Declaration
    bool Fixed { get; }
    Property Value
    Type Description
    bool
    | Edit this page View Source

    IsValid

    True if the input is valid, otherwise false.
    Declaration
    bool IsValid { get; }
    Property Value
    Type Description
    bool
    | Edit this page View Source

    Text

    Set the input text and get the current value.
    Declaration
    ustring Text { get; set; }
    Property Value
    Type Description
    ustring

    Methods

    | Edit this page View Source

    Cursor(int)

    Set Cursor position to pos.
    Declaration
    int Cursor(int pos)
    Parameters
    Type Name Description
    int pos
    Returns
    Type Description
    int Return first valid position.
    | Edit this page View Source

    CursorEnd()

    Find the last valid character position.
    Declaration
    int CursorEnd()
    Returns
    Type Description
    int New cursor position.
    | Edit this page View Source

    CursorLeft(int)

    First valid position before pos.
    Declaration
    int CursorLeft(int pos)
    Parameters
    Type Name Description
    int pos
    Returns
    Type Description
    int New cursor position if any, otherwise returns pos
    | Edit this page View Source

    CursorRight(int)

    First valid position after pos.
    Declaration
    int CursorRight(int pos)
    Parameters
    Type Name Description
    int pos Current position.
    Returns
    Type Description
    int New cursor position if any, otherwise returns pos
    | Edit this page View Source

    CursorStart()

    Find the first valid character position.
    Declaration
    int CursorStart()
    Returns
    Type Description
    int New cursor position.
    | Edit this page View Source

    Delete(int)

    Deletes the current character in pos.
    Declaration
    bool Delete(int pos)
    Parameters
    Type Name Description
    int pos
    Returns
    Type Description
    bool true if the character was successfully removed, otherwise false.
    | Edit this page View Source

    InsertAt(char, int)

    Insert character ch in position pos.
    Declaration
    bool InsertAt(char ch, int pos)
    Parameters
    Type Name Description
    char ch
    int pos
    Returns
    Type Description
    bool true if the character was successfully inserted, otherwise false.
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX