<?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=Method_function_IGDIPlus.IGPGraphics.ResetClip%28%29_%3A_TGPGraphics</id>
		<title>Method function IGDIPlus.IGPGraphics.ResetClip() : TGPGraphics - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://mitov.com/wiki/index.php?action=history&amp;feed=atom&amp;title=Method_function_IGDIPlus.IGPGraphics.ResetClip%28%29_%3A_TGPGraphics"/>
		<link rel="alternate" type="text/html" href="http://mitov.com/wiki/index.php?title=Method_function_IGDIPlus.IGPGraphics.ResetClip()_:_TGPGraphics&amp;action=history"/>
		<updated>2026-04-26T05:14:48Z</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=Method_function_IGDIPlus.IGPGraphics.ResetClip()_:_TGPGraphics&amp;diff=11812&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=Method_function_IGDIPlus.IGPGraphics.ResetClip()_:_TGPGraphics&amp;diff=11812&amp;oldid=prev"/>
				<updated>2012-10-18T17:19:05Z</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;
'''Class:''' [[Interface IGDIPlus.IGPGraphics|IGPGraphics]]&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
=== Delphi: ===&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
'''function''' ResetClip() : [[Class IGDIPlus.TGPGraphics|TGPGraphics]];&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== C++ Builder: ===&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
[[Class IGDIPlus.TGPGraphics|TGPGraphics]] '''__fastcall''' ResetClip();&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Visual C++ (MFC): ===&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 ResetClip();&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Summary ==&lt;br /&gt;
Sets the clipping region of this Graphics object to an infinite region. &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 : [[Interface IGDIPlus.IGPGraphics|IGPGraphics]];&lt;br /&gt;
 &lt;br /&gt;
 begin&lt;br /&gt;
   AGraphics := [[Class IGDIPlus.TGPGraphics|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.[[Method function IGDIPlus.IGPGraphics.SetClip(IGPGraphics;TGPCombineMode) : TGPGraphics|SetClip]]( MakeRect(100, 50, 200, 120));&lt;br /&gt;
   AGraphics.[[Method function IGDIPlus.IGPGraphics.DrawRectangle(IGPPen;TGPRect) : TGPGraphics|DrawRectangle]]( [[Class IGDIPlus.TGPPen|TGPPen]].Create( aclBlack ), 100, 50, 200, 120);&lt;br /&gt;
 &lt;br /&gt;
   // Fill a clipped ellipse in red.&lt;br /&gt;
   AGraphics.[[Method function IGDIPlus.IGPGraphics.FillEllipse(IGPBrush;TGPRect) : TGPGraphics|FillEllipse]]( [[Class IGDIPlus.TGPSolidBrush|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.[[Method function IGDIPlus.IGPGraphics.FillEllipse(IGPBrush;TGPRect) : TGPGraphics|FillEllipse]]([[Class IGDIPlus.TGPSolidBrush|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>