SetOutLine
function SetOutLine(oStroke: any = null): void
Description
Sets the text outline to the current text run.
Parameters
- oStroke
any
null The stroke used to create the text outline.
Returns
void
Try It
var oDocument = Api.GetDocument();
var oStroke = Api.CreateStroke(0.2 * 36000, Api.CreateSolidFill(Api.CreateRGBColor(51, 51, 51)));
var oTextPr = oDocument.GetDefaultTextPr();
oTextPr.SetOutLine(oStroke);
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 outline.");
oRun.SetTextPr(oTextPr);
oParagraph.AddElement(oRun);