[]
        
(Showing Draft Content)

GrapeCity.Documents.Svg.SvgPathCommandType

Enum SvgPathCommandType

Namespace
GrapeCity.Documents.Svg
Assembly
GcDocs.Imaging.dll

Specifies the type of an SVG path command.

public enum SvgPathCommandType

Fields

ClosePath = 1

Represents the 'Z' or 'z' command.

CurveTo = 5

Represents the 'C' or 'c' command.

EllipticalArc = 9

Represents the 'A' or 'a' command.

HorizontalLineTo = 3

Represents the 'H' or 'h' command.

LineTo = 2

Represents the 'L' or 'l' command.

MoveTo = 0

Represents the 'M' or 'm' command.

QuadraticBezierCurveTo = 7

Represents the 'Q' or 'q' command.

SmoothCurveTo = 6

Represents the 'S' or 's' command.

SmoothQuadraticBezierCurveTo = 8

Represents the 'T' or 't' command.

VerticalLineTo = 4

Represents the 'V' or 'v' command.