Class LayoutTokenizer.LayoutWord
Structure representing a word inside text.
Inheritance
Namespace: Telerik.Windows.Documents.Utils
Assembly: Telerik.Windows.Documents.dll
Syntax
public sealed class LayoutWord : ValueType
Constructors
LayoutWord(String, Int32, Boolean, Boolean, Boolean, Boolean, Boolean)
Initializes a new instance of the LayoutTokenizer.LayoutWord struct.
Declaration
public LayoutWord(string word, int indexInText, bool containsDigits, bool containsLetters, bool onlyUpperLetters, bool isDecimal, bool isRtl)
Parameters
System.String
word
|
System.Int32
indexInText
|
System.Boolean
containsDigits
|
System.Boolean
containsLetters
|
System.Boolean
onlyUpperLetters
|
System.Boolean
isDecimal
|
System.Boolean
isRtl
|
LayoutWord(String, Int32, Boolean, Boolean, Boolean, Boolean, Boolean, Boolean)
Initializes a new instance of the LayoutTokenizer.LayoutWord struct.
Declaration
public LayoutWord(string word, int indexInText, bool containsDigits, bool containsLetters, bool onlyUpperLetters, bool isDecimal, bool isRtl, bool isSingleSymbol)
Parameters
System.String
word
|
System.Int32
indexInText
|
System.Boolean
containsDigits
|
System.Boolean
containsLetters
|
System.Boolean
onlyUpperLetters
|
System.Boolean
isDecimal
|
System.Boolean
isRtl
|
System.Boolean
isSingleSymbol
|
Fields
ContainsDigits
Determines whether the word contains digits.
Declaration
public bool ContainsDigits
Field Value
System.Boolean
|
ContainsLetters
Determines whether the word contains letters.
Declaration
public bool ContainsLetters
Field Value
System.Boolean
|
IndexInText
The index of the word inside the text.
Declaration
public int IndexInText
Field Value
System.Int32
|
IsDecimal
Determines whether the word is a decimal.
Declaration
public bool IsDecimal
Field Value
System.Boolean
|
IsRtl
Determines whether the word is in right-to-left.
Declaration
public bool IsRtl
Field Value
System.Boolean
|
IsSingleSymbol
Determines whether the word contains a single symbol.
Declaration
public bool IsSingleSymbol
Field Value
System.Boolean
|
OnlyUpperLetters
Determines whether the word contains only upper-case letters.
Declaration
public bool OnlyUpperLetters
Field Value
System.Boolean
|
Word
The word.
Declaration
public string Word
Field Value
System.String
|