Enum StartingPoint
An enumeration describing the place to start on a line when doing certain operations.
public enum StartingPoint
Fields
FirstPoint = 0
The first point of the line.
LastPoint = 1
The last point of the line.
Remarks
Certain kinds of mathematical line operations need to know if the operation will start at the beginning or the end of the line. Whenever this is the case, you'll need to use this enumeration.