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

Represents statistical information about a RadDocument.

Definition

Namespace:Telerik.WinForms.Documents.Model

Assembly:Telerik.WinControls.RichTextEditor.dll

Syntax:

C#
public class DocumentStatisticsInfo

Inheritance: objectDocumentStatisticsInfo

Constructors

Initializes a new instance of the DocumentStatisticsInfo class.

C#
public DocumentStatisticsInfo()

Properties

Gets or sets the characters count.

C#
public int CharactersCount { get; set; }
Property Value:

The characters count.

Gets or sets the lines count.

C#
public int LinesCount { get; set; }
Property Value:

The lines count.

Gets or sets the pages count.

C#
public int PagesCount { get; set; }
Property Value:

The pages count.

Gets or sets the paragraphs count.

C#
public int ParagraphsCount { get; set; }
Property Value:

The paragraphs count.

Gets or sets the sections count.

C#
public int SectionsCount { get; set; }
Property Value:

The sections count.

Gets or sets the spaces count.

C#
public int SpacesCount { get; set; }
Property Value:

The spaces count.

Gets or sets the words count.

C#
public int WordsCount { get; set; }
Property Value:

The words count.

Methods

Converts to string.

C#
public override string ToString()
Returns:

string

A string that represents this instance.

Overrides: object.ToString()