True if the font is formatted as shadowed.
Namespace:
Aspose.Words
Assembly:
Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntaxpublic bool Shadow { get; set; }
Public Property Shadow As Boolean
Get
Set
public:
property bool Shadow {
bool get ();
void set (bool value);
}
member Shadow : bool with get, set
Property Value
Type:
Boolean
ExamplesShows how to create a run of text formatted with a shadow.
Run run = new Run(doc, "Hello");
run.Font.Shadow = true;
See Also