Enum ShapePathVerb
One drawing command in a shape outline. Coordinates are in the path's own child space; Width and Height map them onto the shape's EMU extent.
public enum ShapePathVerb
Fields
MoveTo = 0Starts a new subpath at the first point (a:moveTo).
LineTo = 1Straight segment to the first point (a:lnTo).
CubicBezTo = 2Cubic bezier through two controls to the third point (a:cubicBezTo).
QuadBezTo = 3Quadratic bezier through one control to the second point (a:quadBezTo).
Close = 4Closes the current subpath (a:close).
ArcTo = 5Elliptical arc from the current point (a:arcTo). The radii and angles are carried as guide expressions on the command; the arc is flattened to cubics during layout, so nothing downstream of the resolver sees this verb.