VCSetCurrentEntityPoint


Version:

1.2

Description:

Used to add the coordinates for a VCAddContinuousLineEntity or VCAddContinuousBezierEntity entity at the specified index point.

Declaration:

 

C/C++

extern "C" void WINAPI VCSetCurrentEntityPoint(short* iError, short i, Point2D* dpP);

Delphi

procedure VCSetCurrentEntityPoint(var iError: Smallint; i: Smallint; var dpP Point2D); stdcall;

ActiveX/COM

Sub SetCurrentEntityPoint(ByVal i As Integer, dpP As IVCPoint2D)

Parameters:

i - the index number to the list of points to the line or curve, with 0 being the first point.
dpP
- the Point2D structure containing the coordinates to place the entity.

Notes:

VCAddContinuousLineEntity and VCAddContinuousBezierEntity allow for a number of points to be placed with the VCSetCurrentEntityPoint command instead of through a parameter.

See Also:

VCSetCurrentEntityPoints, VCAddContinuousBezierEntity, VCAddContinuousLineEntity, VCGetCurrentEntityPoint