New to Telerik UI for WPFStart a free 30-day trial

Represents information about Word elements in a RichTextBox, specifically for proofing in the Telerik UI.

Definition

Namespace:Telerik.Windows.Documents.Proofing

Assembly:Telerik.Windows.Documents.Proofing.dll

Syntax:

C#
public class RichTextBoxWordInfo : IWordInfo

Inheritance: objectRichTextBoxWordInfo

Implements: IWordInfo

Constructors

C#
public RichTextBoxWordInfo(TextMapItem textMapItem)
Parameters:textMapItemTextMapItem

Properties

Determines whether the specified text contains any numeric digits.

C#
public bool ContainsDigits { get; }

Determines whether the RichTextBox contains any letters.

C#
public bool ContainsLetters { get; }
Property Value:

True if the RichTextBox contains at least one letter; otherwise, false.

Gets a value indicating whether the text is in uppercase.

C#
public bool IsUppercase { get; }
Property Value:

true if the text is entirely uppercase; otherwise, false.

Gets the text map items associated with the RichTextBoxWordInfo.

C#
public List<TextMapItem> TextMapItems { get; }
Property Value:

A collection of text map items that represent the content of the RichTextBox.

Represents the word information in the RichTextBox used for proofing operations.

C#
public string Word { get; }

Implements: IWordInfo.Word