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; }
The characters count.
Gets or sets the lines count.
C#
public int LinesCount { get; set; }
The lines count.
Gets or sets the pages count.
C#
public int PagesCount { get; set; }
The pages count.
Gets or sets the paragraphs count.
C#
public int ParagraphsCount { get; set; }
The paragraphs count.
Gets or sets the sections count.
C#
public int SectionsCount { get; set; }
The sections count.
Gets or sets the spaces count.
C#
public int SpacesCount { get; set; }
The spaces count.
Gets or sets the words count.
C#
public int WordsCount { get; set; }
The words count.