Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

NewPoint


...

Creates a new digitizer point at the X, Y coordinates.

...

Procedure: NewPoint(X, Y: Double);


API

...

Calls

Delphi

Code Block
languagedelphi
themeRDark
firstline1
titleUsing PlanSwift Object Model
linenumberstrue
collapsetrue
// PlanSwift Code:


if Item.CanRecord then
  begin
    Item.NewPoint(125, 125);
  end;


// FreshDesk Code:


var
  ps: IPlanSwift;
  est: IItem;
  sect: IItem;
  pt: IPoint;
  itm: IItem;
begin
  // Create Planswift Interface
  ps := coPlanswift.Create;
  // Get the Estimating tab
  est := ps.GetItem('Job\Takeoff');
  // Create a new Item
  itm := est.NewItem('Area', 'DoRecord Example');
  // Create a new Section
  sect := itm.NewSection('DoRecord Section');
  // Add 4 points to section to create a box
  sect.NewPoint(0, 0);
  sect.NewPoint(100, 0);
  sect.NewPoint(100, 100);
  sect.NewPoint(0, 100);
  // Show a message that the box has been drawn
  ShowMessage('Box Drawn');
  // Get the 4th point
  pt := sect.GetPoint(3);
  // Set the point 100 px lower on y axis
  sect.SetPoint(3, pt.X, pt.Y + 100);
  // Show that the point has been moved
  ShowMessage('Point 4 has been Moved');
  // Free planswift
  ps := nil;

C#

Code Block
languagec#
themeRDark
firstline1
titleUsing IItem Object Model
linenumberstrue
collapsetrue
public class PlanswiftApi
{
    private PlanSwift Planswift { get; }
    public PlanSwiftApi()
    {
        Planswift = new PlanSwift();
    }
}


Code Block
languagec#
themeRDark
firstline1
titleUsing PlanSwift Object Model
linenumberstrue
Coming soon

VB/VBA (OLE)

Code Block
languagevb
firstline1
titleUsing IItem Object Model
linenumberstrue
Coming soon


Code Block
languagevb
firstline1
titleUsing PlanSwift Object Model
linenumberstrue
Coming soon