1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2<html>
3
4<head>
5<title>Windows Interface Reference: Path structure</title>
6</head>
7
8<body>
9
10<h1>Path </h1>
11
12<p>The Path structure contains functions to create and operate on paths.</p>
13
14<pre>structure Path :
15  sig
16    type HDC and HRGN
17    type POINT = {x: int, y: int}
18    datatype PointType = datatype Line.PointType
19
20    val AbortPath : HDC -&gt; unit
21    val BeginPath : HDC -&gt; unit
22    val CloseFigure : HDC -&gt; unit
23    val EndPath : HDC -&gt; unit
24    val FillPath : HDC -&gt; unit
25    val FlattenPath : HDC -&gt; unit
26    val GetMiterLimit : HDC -&gt; real
27    val GetPath : HDC -&gt; (PointType * POINT) list
28    val PathToRegion : HDC -&gt; HRGN
29    val SetMiterLimit : HDC * real -&gt; real
30    val StrokeAndFillPath : HDC -&gt; unit
31    val StrokePath : HDC -&gt; unit
32    val WidenPath : HDC -&gt; unit
33
34  end</pre>
35</body>
36</html>
37