Shape.IsWordArt

Shape.IsWordArt property

Indicates whether this shape is a word art.

public bool IsWordArt { get; }

Remarks

Only for the Legacy Shape of xls file.

Examples


[C#]
if(shape.IsWordArt)
{
    //This shape is a WordArt object.
}

See Also