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