SetControlsHighlight
Sets the highlight to the content controls from the current document.
Parameters:
Name |
Type |
Default |
Description |
r |
byte
|
|
Red color component value. |
g |
byte
|
|
Green color component value. |
b |
byte
|
|
Blue color component value. |
bNone |
boolean
|
false |
Defines that highlight will not be set. |
Returns:
-
This method doesn't return any data.
Example
Copy code
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oBlockLvlSdt = Api.CreateBlockLvlSdt();
oBlockLvlSdt.GetContent().GetElement(0).AddText("This is a block text content control.");
oDocument.AddElement(0, oBlockLvlSdt);
oDocument.SetControlsHighlight(255, 255, 0);
builder.SaveFile("docx", "SetControlsHighlight.docx");
builder.CloseFile();
Resulting document