Shape.Paths

Shape.Paths property

Gets the paths of a custom geometric shape.

public ShapePathCollection Paths { get; }

Examples


[C#]
//Returns non-null if there is a path to the custom geometry
if(shape.Paths == null)
    Console.WriteLine("No custom geometry path.");

See Also