Table of Contents

Class RGraphicsPath

Namespace
TheArtOfDev.HtmlRenderer.Adapters
Assembly
StockSharp.Xaml.dll

Adapter for platform specific graphics path object - used to render (draw/fill) path shape.

public abstract class RGraphicsPath : IDisposable
Inheritance
RGraphicsPath
Implements
Inherited Members
Extension Methods

Constructors

RGraphicsPath()

protected RGraphicsPath()

Methods

ArcTo(double, double, double, Corner)

Add circular arc of the given size to the given point from the last point.

public abstract void ArcTo(double x, double y, double size, RGraphicsPath.Corner corner)

Parameters

x double
y double
size double
corner RGraphicsPath.Corner

Dispose()

Release path resources.

public abstract void Dispose()

LineTo(double, double)

Add stright line to the given point from te last point.

public abstract void LineTo(double x, double y)

Parameters

x double
y double

Start(double, double)

Start path at the given point.

public abstract void Start(double x, double y)

Parameters

x double
y double