SetSmallCaps
Specifies that all the lowercase letter characters in the current text Range are formatted for display only as their capital letter character equivalents which are two points smaller than the actual font size specified for this text.
Syntax
expression.SetSmallCaps(isSmallCaps);
expression
- A variable that represents a ApiRange class.
Parameters
Name | Required/Optional | Data type | Default | Description |
---|---|---|---|---|
isSmallCaps | Required | boolean | Specifies if the contents of the current Range are displayed capitalized two points smaller or not. |
Returns
ApiRange | null
Example
This example specifies that all the lowercase letter characters in the current text Range are formatted for display only as their capital letter character equivalents which are two points smaller than the actual font size specified for this text.
- Code
- Result
// How to make range text characters uncapitalized.
// Get a range text, update its style by making its letters uncapitalized.
let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
paragraph.AddText("ONLYOFFICE Document Builder");
let range = doc.GetRange(10, 24);
range.SetSmallCaps(true);