<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://mitov.com/wiki/skins/common/feed.css?301"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://mitov.com/wiki/index.php?action=history&amp;feed=atom&amp;title=IGPGraphics.ResetClip</id>
		<title>IGPGraphics.ResetClip - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://mitov.com/wiki/index.php?action=history&amp;feed=atom&amp;title=IGPGraphics.ResetClip"/>
		<link rel="alternate" type="text/html" href="http://mitov.com/wiki/index.php?title=IGPGraphics.ResetClip&amp;action=history"/>
		<updated>2026-04-11T09:03:45Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.17.0</generator>

	<entry>
		<id>http://mitov.com/wiki/index.php?title=IGPGraphics.ResetClip&amp;diff=1763&amp;oldid=prev</id>
		<title>David Alm: Automated Syncronization with Documentation</title>
		<link rel="alternate" type="text/html" href="http://mitov.com/wiki/index.php?title=IGPGraphics.ResetClip&amp;diff=1763&amp;oldid=prev"/>
				<updated>2011-11-22T00:15:53Z</updated>
		
		<summary type="html">&lt;p&gt;Automated Syncronization with Documentation&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;b&amp;gt;&amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;&lt;br /&gt;
This is a Beta Read Only version of this page. &lt;br /&gt;
Please review and send recommendations to [mailto:mitov@mitov.com mitov@mitov.com]. &lt;br /&gt;
We will enable the editing as soon as we are happy with the overall Wiki site.&lt;br /&gt;
&amp;lt;/span&amp;gt;&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
Call this method to set the clipping region of this Graphics&lt;br /&gt;
 object to an infinite region.&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Example:&lt;br /&gt;
 &lt;br /&gt;
 The following example creates a Graphics object and sets its&lt;br /&gt;
 clipping region to a rectangle. The code fills two ellipses&lt;br /&gt;
 that intersect the rectangular clipping region. The first&lt;br /&gt;
 ellipse is clipped, but the second ellipse is not clipped&lt;br /&gt;
 because it is filled after a call to ResetClip.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 var&lt;br /&gt;
   AGraphics : IGPGraphics;&lt;br /&gt;
 &lt;br /&gt;
 begin&lt;br /&gt;
   AGraphics := TGPGraphics.Create( ACanvas );&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
 &amp;lt;code lang=&amp;quot;delphi&amp;quot;&amp;gt;&lt;br /&gt;
   // Set the clipping region, and draw its outline.&lt;br /&gt;
   AGraphics.SetClip( MakeRect(100, 50, 200, 120));&lt;br /&gt;
   AGraphics.DrawRectangle( TGPPen.Create( aclBlack ), 100, 50, 200, 120);&lt;br /&gt;
 &lt;br /&gt;
   // Fill a clipped ellipse in red.&lt;br /&gt;
   AGraphics.FillEllipse( TGPSolidBrush.Create( aclRed ), 80, 40, 100, 70);&lt;br /&gt;
 &lt;br /&gt;
   // Reset the clipping region.&lt;br /&gt;
   AGraphics.ResetClip();&lt;br /&gt;
 &lt;br /&gt;
   // Fill an unclipped ellipse with blue.&lt;br /&gt;
   AGraphics.FillEllipse(TGPSolidBrush.Create( aclBlue ), 160, 150, 100, 60);&lt;br /&gt;
 end;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
Remarks&lt;br /&gt;
If the clipping region of a Graphics object is infinite, then&lt;br /&gt;
items drawn by that Graphics object will not be clipped.&lt;/div&gt;</summary>
		<author><name>David Alm</name></author>	</entry>

	</feed>