SetColor
function SetColor(r: byte = null, g: byte = null, b: byte = null, isAuto: boolean = false): ApiTextPr
Description
Sets the text color to the current text run in the RGB format.
Parameters
Red color component value.
Green color component value.
Blue color component value.
- isAuto
boolean
false If this parameter is set to "true", then r,g,b parameters will be ignored.
Returns
ApiTextPr
Try It
var oDocument = Api.GetDocument();
var oTextPr = oDocument.GetDefaultTextPr();
oTextPr.SetColor(255, 111, 61, false);
var oParagraph = oDocument.GetElement(0);
oParagraph.AddText("A sample text with the color set to orange using the text properties.");