SetControlsHighlight
function SetControlsHighlight(r: byte = null, g: byte = null, b: byte = null, bNone: boolean = false): void
Description
Sets the highlight to the content controls from the current document.
Parameters
Red color component value.
Green color component value.
Blue color component value.
- bNone
boolean
false Defines that highlight will not be set.
Returns
void
Try It
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, 111, 61);