Table of Contents

Enum ShapePathVerb

Namespace
DocWright.Dom
Assembly
DocWright.Dom.dll

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 = 0

Starts a new subpath at the first point (a:moveTo).

LineTo = 1

Straight segment to the first point (a:lnTo).

CubicBezTo = 2

Cubic bezier through two controls to the third point (a:cubicBezTo).

QuadBezTo = 3

Quadratic bezier through one control to the second point (a:quadBezTo).

Close = 4

Closes the current subpath (a:close).

ArcTo = 5

Elliptical 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.