Class RGraphicsPath
Adapter for platform specific graphics path object - used to render (draw/fill) path shape.
Inheritance
Inherited Members
Namespace: TheArtOfDev.HtmlRenderer.Adapters
Assembly: Telerik.WinControls.RadMap.dll
Syntax
public abstract class RGraphicsPath : IDisposable
Constructors
RGraphicsPath()
Declaration
protected RGraphicsPath()
Methods
ArcTo(Double, Double, Double, RGraphicsPath.Corner)
Add circular arc of the given size to the given point from the last point.
Declaration
public abstract void ArcTo(double x, double y, double size, RGraphicsPath.Corner corner)
Parameters
|
System.Double
x
|
|
System.Double
y
|
|
System.Double
size
|
|
RGraphicsPath.Corner
corner
|
Dispose()
Release path resources.
Declaration
public abstract void Dispose()
Implements
LineTo(Double, Double)
Add stright line to the given point from te last point.
Declaration
public abstract void LineTo(double x, double y)
Parameters
|
System.Double
x
|
|
System.Double
y
|
Start(Double, Double)
Start path at the given point.
Declaration
public abstract void Start(double x, double y)
Parameters
|
System.Double
x
|
|
System.Double
y
|