Interface IGeometryContext2
public interface IGeometryContext2 : IGeometryContext, IDisposable
- Inherited Members
Methods
ArcTo(Point, Size, double, bool, SweepDirection, bool)
Draws an arc to the specified point.
void ArcTo(Point point, Size size, double rotationAngle, bool isLargeArc, SweepDirection sweepDirection, bool isStroked)
Parameters
point
PointThe destination point.
size
SizeThe radii of an oval whose perimeter is used to draw the angle.
rotationAngle
doubleThe rotation angle (in radians) of the oval that specifies the curve.
isLargeArc
booltrue to draw the arc greater than 180 degrees; otherwise, false.
sweepDirection
SweepDirectionA value that indicates whether the arc is drawn in the Clockwise or Counterclockwise direction.
isStroked
boolWhether the segment is stroked
CubicBezierTo(Point, Point, Point, bool)
Draws a Bezier curve to the specified point.
void CubicBezierTo(Point controlPoint1, Point controlPoint2, Point endPoint, bool isStroked)
Parameters
controlPoint1
PointThe first control point used to specify the shape of the curve.
controlPoint2
PointThe second control point used to specify the shape of the curve.
endPoint
PointThe destination point for the end of the curve.
isStroked
boolWhether the segment is stroked
LineTo(Point, bool)
Draws a line to the specified point.
void LineTo(Point point, bool isStroked)
Parameters
QuadraticBezierTo(Point, Point, bool)
Draws a quadratic Bezier curve to the specified point
void QuadraticBezierTo(Point controlPoint, Point endPoint, bool isStroked)