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

	<entry>
		<id>https://mitov.com/wiki/index.php?title=Interface_IGDIPlus.IGPRegion&amp;diff=11159&amp;oldid=prev</id>
		<title>David Alm: Automated Syncronization with Documentation</title>
		<link rel="alternate" type="text/html" href="https://mitov.com/wiki/index.php?title=Interface_IGDIPlus.IGPRegion&amp;diff=11159&amp;oldid=prev"/>
				<updated>2012-10-18T17:18:34Z</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;
'''Package:''' [[Package SignalLabBasicPkg|SignalLabBasicPkg]]&lt;br /&gt;
&lt;br /&gt;
'''Unit:''' [[Unit IGDIPlus|IGDIPlus]]&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
=== Delphi: ===&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
'''type''' IGPRegion = '''interface'''&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
== Summary ==&lt;br /&gt;
Interface to a [[Class IGDIPlus.TGPRegion|TGPRegion]] object. &lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
Defines interface to a [[Class IGDIPlus.TGPRegion|TGPRegion]] object.&lt;br /&gt;
&lt;br /&gt;
The [[Class IGDIPlus.TGPRegion|TGPRegion]] class describes an area of the display surface.&lt;br /&gt;
The area can be any shape. In other words, the boundary of&lt;br /&gt;
the area can be a combination of curved and straight lines.&lt;br /&gt;
Regions can also be created from the interiors of rectangles,&lt;br /&gt;
paths, or a combination of these. Regions are used in&lt;br /&gt;
clipping and hit-testing operations.&lt;br /&gt;
Remarks&lt;br /&gt;
A GDI+ region is stored in world coordinates whereas a GDI&lt;br /&gt;
region is stored in device coordinates. Therefore, a GDI+&lt;br /&gt;
region is scalable and a GDI region is not. For more&lt;br /&gt;
information, see Scalable Regions&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An application can use regions to clip the output of drawing&lt;br /&gt;
operations. The Window Manager uses regions to define the&lt;br /&gt;
drawing area of windows. These regions are called clipping&lt;br /&gt;
regions. An application can also use regions in hit-testing&lt;br /&gt;
operations, such as checking whether a point is in a region&lt;br /&gt;
or whether a rectangle intersects a region. For more&lt;br /&gt;
information, see &amp;quot;Regions&amp;quot;, &amp;quot;Clipping&amp;quot;, and &amp;quot;Using Regions&amp;quot;&lt;br /&gt;
on MSDN.&lt;br /&gt;
&lt;br /&gt;
== Methods ==&lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.GetNativeRegion() : GpRegion|function GetNativeRegion() : GpRegion]]&lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.Clone() : TGPRegion|function Clone() : TGPRegion]] - Makes a copy of this [[Class IGDIPlus.TGPRegion|TGPRegion]] object and returns the address of the new [[Class IGDIPlus.TGPRegion|TGPRegion]] object. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.MakeInfinite() : TGPRegion|function MakeInfinite() : TGPRegion]] - updates the region to an infinite region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.MakeEmpty() : TGPRegion|function MakeEmpty() : TGPRegion]] - Updates the region to an empty region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.GetDataSize() : Cardinal|function GetDataSize() : Cardinal]] - Gets the number of bytes of data that describes the region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.GetData() : TGPByteArray|function GetData() : TGPByteArray]] - Gets data that describes the region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.Intersect(TGPRect) : TGPRegion|function Intersect(rect : TGPRect) : TGPRegion]] - Updates the region to the portion of itself that intersects the specified rectangle's interior. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.IntersectF(TGPRectF) : TGPRegion|function IntersectF(rect : TGPRectF) : TGPRegion]] - Updates the region to the portion of itself that intersects the specified rectangle's interior. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.Intersect(IGPGraphicsPath) : TGPRegion|function Intersect(path : IGPGraphicsPath) : TGPRegion]] - Updates the region to the portion of itself that intersects the specified path's interior. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.Intersect(IGPRegion) : TGPRegion|function Intersect(region : IGPRegion) : TGPRegion]] - Updates the region to the portion of itself that intersects another region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.Union(TGPRect) : TGPRegion|function Union(rect : TGPRect) : TGPRegion]] - Updates the region to all portions (intersecting and nonintersecting) of itself and all portions of the specified rectangle's interior. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.UnionF(TGPRectF) : TGPRegion|function UnionF(rect : TGPRectF) : TGPRegion]] - Updates the region to all portions (intersecting and nonintersecting) of itself and all portions of the specified rectangle's interior. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.Union(IGPGraphicsPath) : TGPRegion|function Union(path : IGPGraphicsPath) : TGPRegion]] - Updates the region to all portions (intersecting and nonintersecting) of itself and all portions of the specified path's interior. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.Union(IGPRegion) : TGPRegion|function Union(region : IGPRegion) : TGPRegion]] - Updates the region to all portions (intersecting and nonintersecting) of itself and all portions of another region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.XorRegion(TGPRect) : TGPRegion|function XorRegion(rect : TGPRect) : TGPRegion]] - Updates the region to the nonintersecting portions of itself and the specified rectangle's interior. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.XorRegionF(TGPRectF) : TGPRegion|function XorRegionF(rect : TGPRectF) : TGPRegion]] - Updates the region to the nonintersecting portions of itself and the specified rectangle's interior. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.XorRegion(IGPGraphicsPath) : TGPRegion|function XorRegion(path : IGPGraphicsPath) : TGPRegion]] - Updates the region to the nonintersecting portions of itself and the specified path's interior. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.XorRegion(IGPRegion) : TGPRegion|function XorRegion(region : IGPRegion) : TGPRegion]] - Updates the region to the nonintersecting portions of itself and another region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.Exclude(TGPRect) : TGPRegion|function Exclude(rect : TGPRect) : TGPRegion]] - Updates the region to the portion of itself that does not intersect the specified rectangle's interior. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.ExcludeF(TGPRectF) : TGPRegion|function ExcludeF(rect : TGPRectF) : TGPRegion]] - Updates the region to the portion of itself that does not intersect the specified rectangle's interior. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.Exclude(IGPGraphicsPath) : TGPRegion|function Exclude(path : IGPGraphicsPath) : TGPRegion]] - Updates the region to the portion of itself that does not intersect the specified path's interior. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.Exclude(IGPRegion) : TGPRegion|function Exclude(region : IGPRegion) : TGPRegion]] - Updates the region to the portion of itself that does not intersect another region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.Complement(TGPRect) : TGPRegion|function Complement(rect : TGPRect) : TGPRegion]] - Updates the region to the portion of the specified rectangle's interior that does not intersect the region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.ComplementF(TGPRectF) : TGPRegion|function ComplementF(rect : TGPRectF) : TGPRegion]] - Updates the region to the portion of the specified rectangle's interior that does not intersect the region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.Complement(IGPGraphicsPath) : TGPRegion|function Complement(path : IGPGraphicsPath) : TGPRegion]] - Updates the region to the portion of the specified path's interior that does not intersect the region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.Complement(IGPRegion) : TGPRegion|function Complement(region : IGPRegion) : TGPRegion]] - Updates the region to the portion of another region that does not intersect this region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.TranslateF(Single;Single) : TGPRegion|function TranslateF(dx : Single; dy : Single) : TGPRegion]] - Offsets the region by specified amounts in the horizontal and vertical directions. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.Translate(Integer;Integer) : TGPRegion|function Translate(dx : Integer; dy : Integer) : TGPRegion]] - Offsets the region by specified amounts in the horizontal and vertical directions. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.Transform(IGPMatrix) : TGPRegion|function Transform(matrix : IGPMatrix) : TGPRegion]] - Transforms the region by multiplying each of its data points by a specified matrix. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.GetBounds(IGPGraphics) : TGPRect|function GetBounds(g : IGPGraphics) : TGPRect]] - Gets a rectangle that encloses the region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.GetBoundsF(IGPGraphics) : TGPRectF|function GetBoundsF(g : IGPGraphics) : TGPRectF]] - Gets a rectangle that encloses the region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.GetHRGN(IGPGraphics) : HRGN|function GetHRGN(g : IGPGraphics) : HRGN]] - Creates a Microsoft Windows Graphics Device Interface (GDI) region from the region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.IsEmpty(IGPGraphics) : Boolean|function IsEmpty(g : IGPGraphics) : Boolean]] - Determines whether the region is empty. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.IsInfinite(IGPGraphics) : Boolean|function IsInfinite(g : IGPGraphics) : Boolean]] - Determines whether the region is infinite. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.IsVisible(Integer;Integer;IGPGraphics) : Boolean|function IsVisible(x : Integer; y : Integer; g : IGPGraphics) : Boolean]] - Determines whether a point is inside the region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.IsVisible(TGPPoint;IGPGraphics) : Boolean|function IsVisible(point : TGPPoint; g : IGPGraphics) : Boolean]] - Determines whether a point is inside the region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.IsVisibleF(Single;Single;IGPGraphics) : Boolean|function IsVisibleF(x : Single; y : Single; g : IGPGraphics) : Boolean]] - Determines whether a point is inside the region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.IsVisibleF(TGPPointF;IGPGraphics) : Boolean|function IsVisibleF(point : TGPPointF; g : IGPGraphics) : Boolean]] - Determines whether a point is inside the region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.IsVisible(Integer;Integer;Integer;Integer;IGPGraphics) : Boolean|function IsVisible(x : Integer; y : Integer; width : Integer; height : Integer; g : IGPGraphics) : Boolean]] - Determines whether a rectangle intersects the region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.IsVisible(TGPRect;IGPGraphics) : Boolean|function IsVisible(rect : TGPRect; g : IGPGraphics) : Boolean]] - Determines whether a rectangle intersects the region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.IsVisibleF(Single;Single;Single;Single;IGPGraphics) : Boolean|function IsVisibleF(x : Single; y : Single; width : Single; height : Single; g : IGPGraphics) : Boolean]] - Determines whether a rectangle intersects the region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.IsVisibleF(TGPRectF;IGPGraphics) : Boolean|function IsVisibleF(rect : TGPRectF; g : IGPGraphics) : Boolean]] - Determines whether a rectangle intersects the region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.Equals(IGPRegion;IGPGraphics) : Boolean|function Equals(region : IGPRegion; g : IGPGraphics) : Boolean]] - Determines whether the region is equal to another region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.GetRegionScansCount(IGPMatrix) : Cardinal|function GetRegionScansCount(matrix : IGPMatrix) : Cardinal]] - Returns the number of rectangles that approximate this region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.GetRegionScansF(IGPMatrix) : TGPRectFArray|function GetRegionScansF(matrix : IGPMatrix) : TGPRectFArray]] - Returns an array of rectangles that approximate the region. &lt;br /&gt;
*[[Method function IGDIPlus.IGPRegion.GetRegionScans(IGPMatrix) : TGPRectArray|function GetRegionScans(matrix : IGPMatrix) : TGPRectArray]] - Returns an array of rectangles that approximate the region. &lt;br /&gt;
&lt;br /&gt;
[[Category:Interfaces]]&lt;/div&gt;</summary>
		<author><name>David Alm</name></author>	</entry>

	</feed>