Struct
LayoutTokenizer.LayoutWord

Structure representing a word inside text.

Definition

Namespace:Telerik.Windows.Documents.Utils

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

cs-api-definition
public struct LayoutTokenizer.LayoutWord

Inherited Members ValueType.Equals(object)ValueType.GetHashCode()ValueType.ToString()

Constructors

LayoutWord(string, int, bool, bool, bool, bool, bool)

Initializes a new instance of the LayoutTokenizer.LayoutWord struct.

Declaration

cs-api-definition
public LayoutWord(string word, int indexInText, bool containsDigits, bool containsLetters, bool onlyUpperLetters, bool isDecimal, bool isRtl)

Parameters

word

string

indexInText

int

containsDigits

bool

containsLetters

bool

onlyUpperLetters

bool

isDecimal

bool

isRtl

bool

LayoutWord(string, int, bool, bool, bool, bool, bool, bool)

Initializes a new instance of the LayoutTokenizer.LayoutWord struct.

Declaration

cs-api-definition
public LayoutWord(string word, int indexInText, bool containsDigits, bool containsLetters, bool onlyUpperLetters, bool isDecimal, bool isRtl, bool isSingleSymbol)

Parameters

word

string

indexInText

int

containsDigits

bool

containsLetters

bool

onlyUpperLetters

bool

isDecimal

bool

isRtl

bool

isSingleSymbol

bool

Fields

ContainsDigits

Determines whether the word contains digits.

Declaration

cs-api-definition
public bool ContainsDigits

Field Value

bool

ContainsLetters

Determines whether the word contains letters.

Declaration

cs-api-definition
public bool ContainsLetters

Field Value

bool

IndexInText

The index of the word inside the text.

Declaration

cs-api-definition
public int IndexInText

Field Value

int

IsDecimal

Determines whether the word is a decimal.

Declaration

cs-api-definition
public bool IsDecimal

Field Value

bool

IsRtl

Determines whether the word is in right-to-left.

Declaration

cs-api-definition
public bool IsRtl

Field Value

bool

IsSingleSymbol

Determines whether the word contains a single symbol.

Declaration

cs-api-definition
public bool IsSingleSymbol

Field Value

bool

OnlyUpperLetters

Determines whether the word contains only upper-case letters.

Declaration

cs-api-definition
public bool OnlyUpperLetters

Field Value

bool

Word

The word.

Declaration

cs-api-definition
public string Word

Field Value

string