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