Version

PointOnLine Method

Returns a point at a given percentage from a start point to an end point.
Syntax
'Declaration
 
Public Shared Function PointOnLine( _
   ByVal start As PointF, _
   ByVal end As PointF, _
   ByVal extent As Double _
) As PointF
public static PointF PointOnLine( 
   PointF start,
   PointF end,
   double extent
)

Parameters

start
The start point.
end
The end point.
extent
The percent from start to end at which to find a point.

Return Value

The point at the given extent from start to end.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also