<br><br><div class="gmail_quote">2010/4/29 Günther Schmidt <span dir="ltr">&lt;<a href="mailto:gue.schmidt@web.de">gue.schmidt@web.de</a>&gt;</span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hello,<br>
<br>
is there some sample code on how to use the Graphics.Win32.GDI.Clip?<br></blockquote><div><br>That part of the library is fairly low level and has a mostly one-to-one correspondence to the C API.  This means that you should be able to more or less read an example of how to do it in C and just translate that to the functions you see in Graphics.Win32.GDI.Clip.<br>
<br>In other words, try this example:<br><a href="http://www.codeproject.com/KB/clipboard/archerclipboard1.aspx">http://www.codeproject.com/KB/clipboard/archerclipboard1.aspx</a><br><br>Now, on a stylistic note, I think most people who do Win32 programming avoid directly using GDI.  It&#39;s older, low level, and sort of &quot;primitive&quot;.  So, usually you&#39;d use a different library that wraps around GDI.  At least, that seemed to be the case when I last looked for resources about GDI programming.  Perhaps it doesn&#39;t apply universally (my example usage was with fonts).<br>
<br>Jason<br></div></div>