Gets or sets a value that indicates whether the font is a shadow font.
[Visual Basic] Property Shadow As Boolean [C#] bool Shadow { get; set; } [C++] __property bool get_Shadow(); __property void set_Shadow(bool ); [JScript] function get Shadow() : bool function set Shadow(bool);
true if the font is a shadow font; otherwise, false.
This property has no effect in Windows, but its value is retained (it can be set and returned).
This example sets the font shadow for cell A1 on sheet one.
[C#]
book.Worksheets[1].Range["A1"].Font.Shadow = true;
[Visual Basic]
book.Worksheets(1).Range("A1").Font.Shadow = true
[C++]
book->Worksheets->Item[1]->Range->Item[S"A1"]->Font->Shadow = true;
IFont Interface | NativeExcel Namespace