To open any link in a new tab, preserving your position in the current article, just hold down the <CTRL> key on your keyboard before clicking the link or click using your mouse wheel.

NewPoint (3)

NewPoint



Adds a new point to ItemPath at the X, Y coordinates. If the Item is not found or is not a drawing object, this procedure will be ignored.



Syntax:

Procedure: NewPoint(ItemPath: String; X, Y: Double);


API Call:

Scripting
StartCount := PointCount(ItemPath);

NewPoint(ItemPath, 100, 125);

StopCount := PointCount(ItemPath);

if StopCount > StartCount then
  begin
    Result := TRUE;
  end
else
  begin
    Result := FALSE;
  end;

Copyright 2023 ConstructConnect