FontShadow Property

True if the font is formatted as shadowed.

Namespace:  Aspose.Words
Assembly:  Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntax
public bool Shadow { get; set; }

Property Value

Type: Boolean
Examples
Shows how to create a run of text formatted with a shadow.
Run run = new Run(doc, "Hello");
run.Font.Shadow = true;
See Also