Метод | Описание | |
---|---|---|
ArcTo ( |
Adds arc segment.
|
|
BeginFigure ( |
Begins path figure.
|
|
CubicBezierTo ( |
Adds cubic bezier segment.
|
|
LineTo ( |
Adds line segment.
|
|
PolyCubicBezierTo ( ImmutableArray |
Adds poly cubic bezier segment.
|
|
PolyLineTo ( ImmutableArray |
Adds poly line segment.
|
|
PolyQuadraticBezierTo ( ImmutableArray |
Adds poly quadratic bezier segment.
|
|
QuadraticBezierTo ( |
Adds quadratic bezier segment.
|
|
SetClosedState ( bool isClosed ) : void |
Sets the current closed state of the figure.
|
public abstract ArcTo ( |
||
point | The end point. | |
size | The arc size. | |
rotationAngle | double | The rotation angle. |
isLargeArc | bool | The is large flag. |
sweepDirection | XSweepDirection | The sweep direction flag. |
isStroked | bool | The flag indicating whether shape is stroked. |
isSmoothJoin | bool | The flag indicating whether shape is smooth join. |
Результат | void |
public abstract BeginFigure ( |
||
startPoint | The start point. | |
isFilled | bool | The flag indicating whether figure is filled. |
isClosed | bool | The flag indicating whether figure is closed. |
Результат | void |
public abstract CubicBezierTo ( |
||
point1 | The first control point. | |
point2 | The second control point. | |
point3 | The end point. | |
isStroked | bool | The flag indicating whether shape is stroked. |
isSmoothJoin | bool | The flag indicating whether shape is smooth join. |
Результат | void |
public abstract LineTo ( |
||
point | The end point. | |
isStroked | bool | The flag indicating whether shape is stroked. |
isSmoothJoin | bool | The flag indicating whether shape is smooth join. |
Результат | void |
public abstract PolyCubicBezierTo ( ImmutableArray |
||
points | ImmutableArray |
The points array. |
isStroked | bool | The flag indicating whether shape is stroked. |
isSmoothJoin | bool | The flag indicating whether shape is smooth join. |
Результат | void |
public abstract PolyLineTo ( ImmutableArray |
||
points | ImmutableArray |
The points array. |
isStroked | bool | The flag indicating whether shape is stroked. |
isSmoothJoin | bool | The flag indicating whether shape is smooth join. |
Результат | void |
public abstract PolyQuadraticBezierTo ( ImmutableArray |
||
points | ImmutableArray |
The points array. |
isStroked | bool | The flag indicating whether shape is stroked. |
isSmoothJoin | bool | The flag indicating whether shape is smooth join. |
Результат | void |
public abstract QuadraticBezierTo ( |
||
point1 | The control point. | |
point2 | The end point. | |
isStroked | bool | The flag indicating whether shape is stroked. |
isSmoothJoin | bool | The flag indicating whether shape is smooth join. |
Результат | void |
public abstract SetClosedState ( bool isClosed ) : void | ||
isClosed | bool | The flag indicating whether figure is closed. |
Результат | void |