Members  Example 
IPathDrawingContext Interface
Returns an IPathDrawingContext to draw a polyline, or collection of PointMarkers
Syntax
public interface IPathDrawingContext 
Example
The following example shows how to create a PathDrawingContext, move it and dispose to complete the path
var lineContext = renderContext.BeginLine(pen, 0, 0);
lineContext.LineTo(1, 2);
lineContext.LineTo(3, 4);
lineContext.Dispose();
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also