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

	<entry>
		<id>https://www.mitov.com/wiki/index.php?title=Interface_IGDIPlus.IGPGraphicsPathIterator&amp;diff=11598&amp;oldid=prev</id>
		<title>David Alm: Automated Syncronization with Documentation</title>
		<link rel="alternate" type="text/html" href="https://www.mitov.com/wiki/index.php?title=Interface_IGDIPlus.IGPGraphicsPathIterator&amp;diff=11598&amp;oldid=prev"/>
				<updated>2012-10-18T17:18:56Z</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''' IGPGraphicsPathIterator = '''interface'''&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
== Summary ==&lt;br /&gt;
Interface to a [[Class IGDIPlus.TGPGraphicsPathIterator|TGPGraphicsPathIterator]] object. &lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
Defines interface to a [[Class IGDIPlus.TGPGraphicsPathIterator|TGPGraphicsPathIterator]] object.&lt;br /&gt;
&lt;br /&gt;
The [[Class IGDIPlus.TGPGraphicsPathIterator|TGPGraphicsPathIterator]] class provides methods for&lt;br /&gt;
isolating selected subsets of the path stored in a&lt;br /&gt;
[[Class IGDIPlus.TGPGraphicsPath|TGPGraphicsPath]] object. A path consists of one or more&lt;br /&gt;
figures. You can use a [[Class IGDIPlus.TGPGraphicsPathIterator|TGPGraphicsPathIterator]] to isolate one&lt;br /&gt;
or more of those figures. A path can also have markers that&lt;br /&gt;
divide the path into sections. You can use a&lt;br /&gt;
[[Class IGDIPlus.TGPGraphicsPathIterator|TGPGraphicsPathIterator]] object to isolate one or more of&lt;br /&gt;
those sections.&lt;br /&gt;
&lt;br /&gt;
== Methods ==&lt;br /&gt;
*[[Method function IGDIPlus.IGPGraphicsPathIterator.NextSubpath(Integer;Integer;bool) : Integer|function NextSubpath(startIndex : Integer; endIndex : Integer; isClosed : bool) : Integer]] - Returns the starting index and the ending index of the next subpath (figure) in the iterator's associated path. &lt;br /&gt;
*[[Method function IGDIPlus.IGPGraphicsPathIterator.NextSubpath(IGPGraphicsPath;Boolean) : Integer|function NextSubpath(path : IGPGraphicsPath; isClosed : Boolean) : Integer]] - Returns the next figure (subpath) from the iterator's associated path. &lt;br /&gt;
*[[Method function IGDIPlus.IGPGraphicsPathIterator.NextPathType(TGPPathPointType;Integer;Integer) : Integer|function NextPathType(pathType : TGPPathPointType; startIndex : Integer; endIndex : Integer) : Integer]] - Returns the starting index and the ending index of the next group of data points that all have the same type. &lt;br /&gt;
*[[Method function IGDIPlus.IGPGraphicsPathIterator.NextMarker(Integer;Integer) : Integer|function NextMarker(startIndex : Integer; endIndex : Integer) : Integer]] - Returns the starting index and the ending index of the next marker-delimited section in the iterator's associated path. &lt;br /&gt;
*[[Method function IGDIPlus.IGPGraphicsPathIterator.NextMarker(IGPGraphicsPath) : Integer|function NextMarker(path : IGPGraphicsPath) : Integer]] - Returns the next marker-delimited section of the iterator's associated path. &lt;br /&gt;
*[[Method function IGDIPlus.IGPGraphicsPathIterator.GetCount() : Integer|function GetCount() : Integer]] - Returns the number of data points in the path. &lt;br /&gt;
*[[Method function IGDIPlus.IGPGraphicsPathIterator.GetSubpathCount() : Integer|function GetSubpathCount() : Integer]] - Returns the number of subpaths (also called figures) in the path. &lt;br /&gt;
*[[Method function IGDIPlus.IGPGraphicsPathIterator.HasCurve() : Boolean|function HasCurve() : Boolean]] - Determines whether the path has any curves. &lt;br /&gt;
*[[Method function IGDIPlus.IGPGraphicsPathIterator.Rewind() : TGPGraphicsPathIterator|function Rewind() : TGPGraphicsPathIterator]] - Rewinds the iterator to the beginning of its associated path. &lt;br /&gt;
*[[Method function IGDIPlus.IGPGraphicsPathIterator.Enumerate(TGPPointFArray;TGPByteArray) : Integer|function Enumerate(points : TGPPointFArray; types : TGPByteArray) : Integer]] - Returns the path's data points as a [[Structure IGDIPlus.TGPPointF|TGPPointF]] array and the path's point types as a BYTE array. &lt;br /&gt;
*[[Method function IGDIPlus.IGPGraphicsPathIterator.CopyData(PGPPointF;PBYTE;Integer;Integer) : Integer|function CopyData(points : PGPPointF; types : PBYTE; startIndex : Integer; endIndex : Integer) : Integer]] - Copies a subset of the path's data points to a PointF array and copies a subset of the path's point types to a BYTE array. &lt;br /&gt;
&lt;br /&gt;
[[Category:Interfaces]]&lt;/div&gt;</summary>
		<author><name>David Alm</name></author>	</entry>

	</feed>