SetShd
function SetShd(sType: any = null, r: any = null, g: any = null, b: any = null): void
Description
Specifies the shading applied to the contents of the current text run.
Parameters
- sType
any
null The shading type applied to the contents of the current text run.
- r
any
null Red color component value.
- g
any
null Green color component value.
- b
any
null Blue color component value.
Returns
void
Overloads By
- SetShd
(sType, r, g, b): ApiTextPr
Specifies the shading applied to the contents of the current text run.
Try It
var oDocument = Api.GetDocument();
var oTextPr = oDocument.GetDefaultTextPr();
oTextPr.SetShd("clear", 255, 111, 61);
var oParagraph = oDocument.GetElement(0);
oParagraph.AddText("A sample text with the shading set to orange.");