SetCaps
Specifies that any lowercase characters in the current text Range are formatted for display only as their capital letter character equivalents.
Parameters:
Name |
Type |
Description |
isCaps |
boolean
|
Specifies if the Range contents are displayed capitalized or not. |
Returns:
- Type
-
ApiRange | null
Example
Copy code
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
oParagraph.AddText("ONLYOFFICE Document Builder");
var oRange = oDocument.GetRange(10, 17);
oRange.SetCaps(true);
builder.SaveFile("docx", "SetCaps.docx");
builder.CloseFile();
Resulting document