shading property

Font.shading property

Returns a Shading object that refers to the shading formatting for the font.

get shading(): Aspose.Words.Shading

Examples

Shows how to apply shading to text created by a document builder.

let doc = new aw.Document();
let builder = new aw.DocumentBuilder(doc);

builder.font.color = "#FFFFFF";

// One way to make the text created using our white font color visible
// is to apply a background shading effect.
let shading = builder.font.shading;
shading.texture = aw.TextureIndex.TextureDiagonalUp;
shading.backgroundPatternColor = "#FF4500";
shading.foregroundPatternColor = "#00008B";

builder.writeln("White text on an orange background with a two-tone texture.");

doc.save(base.artifactsDir + "Font.shading.docx");

See Also