Class RichTextBoxWordInfo
Represents information about Word elements in a RichTextBox, specifically for proofing in the Telerik UI.
Inheritance
Namespace: Telerik.Windows.Documents.Proofing
Assembly: Telerik.Windows.Documents.Proofing.dll
Syntax
public class RichTextBoxWordInfo : Object, IWordInfo
Constructors
RichTextBoxWordInfo(TextMapItem)
Properties
ContainsDigits
Determines whether the specified text contains any numeric digits.
Declaration
public bool ContainsDigits { get; }
Property Value
System.Boolean
|
ContainsLetters
Determines whether the RichTextBox contains any letters.
Declaration
public bool ContainsLetters { get; }
Property Value
System.Boolean
True if the RichTextBox contains at least one letter; otherwise, false. |
IsUppercase
Gets a value indicating whether the text is in uppercase.
Declaration
public bool IsUppercase { get; }
Property Value
System.Boolean
true if the text is entirely uppercase; otherwise, false. |
TextMapItems
Gets the text map items associated with the RichTextBoxWordInfo.
Declaration
public List<TextMapItem> TextMapItems { get; }
Property Value
System.Collections.Generic.List<TextMapItem>
A collection of text map items that represent the content of the RichTextBox. |
Word
Represents the word information in the RichTextBox used for proofing operations.
Declaration
public string Word { get; }
Property Value
System.String
|