Method function IGDIPlus.IGPGraphicsPathIterator.NextMarker(IGPGraphicsPath) : Integer
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: IGPGraphicsPathIterator
Contents |
Syntax
Delphi:
function NextMarker( path : IGPGraphicsPath ) : Integer;
C++ Builder:
int __fastcall NextMarker( IGPGraphicsPath path );
Visual C++ (MFC):
NextMarker( path );
Summary
Returns the next marker-delimited section of the iterator's associated path.
Description
Call this method to get the next marker-delimited section of the iterator's associated path. Remarks A path has an array of data points that define its lines and curves. You can call a path's SetMarker method to designate certain points in the array as markers. Those marker points divide the path into sections.
The first time you call the NextMarker method of an iterator, it gets the first marker-delimited section of that iterator's associated path. The second time, it gets the second section, and so on. Each time you call NextSubpath, it returns the number of data points in the retrieved section. When there are no sections remaining, it returns 0.