[]
PDF "m" operator. Begin a new subpath by moving the current point to coordinates (x, y), omitting any connecting line segment. If the previous path construction operator in the current path was also m, the new m overrides it; no vestige of the previous m operation remains in the path.
public class MoveTo : OperatorBase
Initializes a new instance of the MoveTo class.
public MoveTo(float x, float y)
The X coordinate of point.
public readonly float X
The Y coordinate of point.
public readonly float Y
Gets the operator's description.
public override string Desc { get; }
Gets the operator's PDF name.
public override string Name { get; }
Determines whether the provided operator is the same as the current operator.
public override bool IsSame(OperatorBase other)
other
OperatorBaseA OperatorBase object.
true if the provided operator is the same as the current operator; otherwise, false.