Sets this line's endpoints to be 'from' and 'to'.
[Visual Basic 6.0] Sub PutCoords(
ByVal from As IPoint, _
ByVal to As IPoint _
)
[Visual Basic .NET] Public Sub PutCoords ( _ ByVal from As IPoint, _ ByVal to As IPoint _ )
[C#] public void PutCoords ( IPoint from, IPoint to );
[Java] public void putCoords ( IPoint from, IPoint to ) throws IOException, AutomationException
[C++] HRESULT PutCoords( IPoint* from, IPoint* to );
The PutCoords method sets the From Point and To Point for a line object. If the From Point and To Point are identical, it creates a zero Length line with the same start and endpoint.
