IGPGraphicsPath.Reset
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
Latest revision as of 00:30, 26 June 2013
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.
Description
Call this method to empty the path and set the fill mode to
FillModeAlternate.
Example:
The following example creates a path, adds a sequence of
connected lines to the path, and then clears the path by
calling the Reset method.
APath.AddLines( [ MakePoint(0, 0),
MakePoint(20, 0),
MakePoint(20, 40),
MakePoint(0, 40),
MakePoint(0, 0) ] );
APath.Reset();