SetColor
function SetColor(r: byte = null, g: byte = null, b: byte = null, isAuto: boolean = false): ApiTextPr
Description
Sets the text color for 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 oWorksheet = Api.GetActiveSheet();
var oFill = Api.CreateSolidFill(Api.CreateRGBColor(255, 111, 61));
var oStroke = Api.CreateStroke(0, Api.CreateNoFill());
var oShape = oWorksheet.AddShape("flowChartOnlineStorage", 120 * 36000, 70 * 36000, oFill, oStroke, 0, 2 * 36000, 0, 3 * 36000);
var oDocContent = oShape.GetContent();
var oParagraph = oDocContent.GetElement(0);
var oRun = Api.CreateRun();
oRun.AddText("This is a text run with the font color set to gray.");
oParagraph.AddElement(oRun);
oRun.SetColor(128, 128, 128);