SetTextFill
function SetTextFill(oApiFill: any = null): void
Description
Sets the text fill to the current text run.
Parameters
- oApiFill
any
null The color or pattern used to fill the text color.
Returns
void
Try It
var oDocument = Api.GetDocument();
var oFill = Api.CreateSolidFill(Api.CreateRGBColor(51, 51, 51));
var oTextPr = oDocument.GetDefaultTextPr();
oTextPr.SetTextFill(oFill);
var oParagraph = oDocument.GetElement(0);
var oRun = Api.CreateRun();
oRun.AddText("This is just a sample text. ");
oParagraph.AddElement(oRun);
oRun = Api.CreateRun();
oRun.AddText("This is a text run with the black text.");
oRun.SetTextPr(oTextPr);
oParagraph.AddElement(oRun);