IRenderingContextDrawPath Method
|
Draw a path which may be filled, outlined or
both.
Namespace: WebSupergoo.WordGlue4.Rendering
Assembly: WordGlue4 (in WordGlue4.dll)
Version: 4.1.0.0 (4.1.0.0)
Syntax
void DrawPath(
Brush brush,
Pen pen,
GraphicsPath path
)
Sub DrawPath (
brush As Brush,
pen As Pen,
path As GraphicsPath
)
abstract DrawPath :
brush : Brush *
pen : Pen *
path : GraphicsPath -> unit
Parameters
- brush
- Type: WebSupergoo.WordGlue4.RenderingBrush
The brush with which the path should be filled. If this parameter
is null then there is no fill.
- pen
- Type: WebSupergoo.WordGlue4.RenderingPen
The pen with which the path should be outlined. If this parameter
is null then there is no outline.
- path
- Type: WebSupergoo.WordGlue4.RenderingGraphicsPath
The path.
See Also