The definition of the count display format.
| C# |
public string CountFormat { get; set; }
This string defines what counts are displayed and where in the format.
This following count identifiers can be embedded inside braces, i.e. {Identifier}. Note that no spaces are allowed inside the brackets and the identifiers are case-sensitive.
Also note that specification of any identifier for the count left requires that a limit also be specified in the CountLimits property for that count type.
This following count identifiers can be embedded inside braces, i.e. {Identifier}. Note that no spaces are allowed inside the brackets and the identifiers are case-sensitive.
- Words
- Characters
- Length
- WordsLeft
- CharactersLeft
- LengthLeft
Also note that specification of any identifier for the count left requires that a limit also be specified in the CountLimits property for that count type.
Set the property declaratively in the HtmlEditor tag:
CopyC#
CountFormat = "Words: {Words} Characters: {Characters}"