In This Article

ITextStatistics Interface

Provides the base requirements for a class that contains numerous statistics such as line, word, character counts, and readability scores for text.

public interface ITextStatistics

Properties

AverageLettersPerWord

Gets the average number of letters per word.

double AverageLettersPerWord { get; }

Property Value

Double:

The average number of letters per word.

AverageSyllablesPerWord

Gets the average number of syllables per word.

double AverageSyllablesPerWord { get; }

Property Value

Double:

The average number of syllables per word.

AverageWordsPerSentence

Gets the average number of words per sentence.

double AverageWordsPerSentence { get; }

Property Value

Double:

The average number of words per sentence.

Characters

Gets the number of characters in the text.

int Characters { get; }

Property Value

Int32:

The number of characters in the text.

Consonants

Gets the number of consonants in the text.

int Consonants { get; }

Property Value

Int32:

The number of consonants in the text.

FleschKincaidGradeLevel

Gets the Flesch-Kincaid grade level, which indicates the number of years of education required to understand the text.

double FleschKincaidGradeLevel { get; }

Property Value

Double

Remarks

A grade level of 7.1 indicates that an individual with about 7 years of education could understand the text.

FleschReadingEaseScore

Gets the Flesch reading ease score in the range of 0 to 100, which indicates how readable the text is.

double FleschReadingEaseScore { get; }

Property Value

Double

Remarks

Scores of 90-100 are considered easily understandable by an average 5th grader. Scores of 60-70 are considered easily understandable by 8th and 9th grade students. Scores of 0-30 are best understood by college graduates.

Letters

Gets the number of letters in the text.

int Letters { get; }

Property Value

Int32:

The number of letters in the text.

Lines

Gets the number of lines in the text.

int Lines { get; }

Property Value

Int32:

The number of lines in the text.

NonWhitespaceCharacters

Gets the number of non-whitespace characters in the text.

int NonWhitespaceCharacters { get; }

Property Value

Int32:

The number of non-whitespace characters in the text.

NonWhitespaceLines

Gets the number of non-whitespace lines in the text.

int NonWhitespaceLines { get; }

Property Value

Int32:

The number of non-whitespace lines in the text.

Sentences

Gets the number of sentences in the text.

int Sentences { get; }

Property Value

Int32:

The number of sentences in the text.

Syllables

Gets the number of syllables in the text.

int Syllables { get; }

Property Value

Int32:

The number of syllables in the text.

Vowels

Gets the number of vowels in the text.

int Vowels { get; }

Property Value

Int32:

The number of vowels in the text.

WhitespaceCharacters

Gets the number of whitespace characters in the text.

int WhitespaceCharacters { get; }

Property Value

Int32:

The number of whitespace characters in the text.

WhitespaceLines

Gets the number of whitespace lines in the text.

int WhitespaceLines { get; }

Property Value

Int32:

The number of whitespace lines in the text.

Words

Gets the number of words in the text.

int Words { get; }

Property Value

Int32:

The number of words in the text.

Methods

GetRawStatistics()

Returns the list of ITextStatistic objects that contain the statistic results.

IList<ITextStatistic> GetRawStatistics()

Returns

IList<ITextStatistic>:

The list of ITextStatistic objects that contain the statistic results.

See Also