Interface IAtspiEditableText

    Definition

    Namespace:
    Tizen.NUI.Accessibility
    Assembly:
    Tizen.NUI.dll

    Interface representing objects which can store editable texts.

    public interface IAtspiEditableText : IAtspiText

    Methods

    View Source

    AccessibilityCopyText(int, int)

    Copies text in range to system clipboard.

    Declaration
    bool AccessibilityCopyText(int startPosition, int endPosition)
    Parameters
    Type Name Description
    int startPosition

    The index of first character

    int endPosition

    The index of first character after the last one expected

    Returns
    Type Description
    bool

    True on success, false otherwise

    View Source

    AccessibilityCutText(int, int)

    Cuts text in range to system clipboard.

    Declaration
    bool AccessibilityCutText(int startPosition, int endPosition)
    Parameters
    Type Name Description
    int startPosition

    The index of first character

    int endPosition

    The index of first character after the last one expected

    Returns
    Type Description
    bool

    True on success, false otherwise

    View Source

    AccessibilityDeleteText(int, int)

    Deletes text in range.

    Declaration
    bool AccessibilityDeleteText(int startPosition, int endPosition)
    Parameters
    Type Name Description
    int startPosition

    The index of first character

    int endPosition

    The index of first character after the last one expected

    Returns
    Type Description
    bool

    True on success, false otherwise

    View Source

    AccessibilityInsertText(int, string)

    Inserts text at startPosition.

    Declaration
    bool AccessibilityInsertText(int startPosition, string text)
    Parameters
    Type Name Description
    int startPosition

    The index of first character

    string text

    The text content

    Returns
    Type Description
    bool

    True on success, false otherwise

    View Source

    AccessibilitySetTextContents(string)

    Replaces text with content.

    Declaration
    bool AccessibilitySetTextContents(string newContents)
    Parameters
    Type Name Description
    string newContents

    The text content

    Returns
    Type Description
    bool

    True on success, false otherwise

    Extension Methods

    EXamlExtensions.LoadFromEXamlByRelativePath<T>(T, string)
    Extensions.LoadFromXaml<TXaml>(TXaml, string)
    Extensions.LoadFromXaml<TXaml>(TXaml, Type)
    Extensions.LoadFromXamlFile<TXaml>(TXaml, string)
    • View Source
    Back to top Copyright © 2016-2025 Samsung
    Generated by DocFX