Versions Compared

Key

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

Functions - GetPoint

Text:

API Call:Returns the IPoint object from the given index position.

Syntax:Function: IItem.GetPoint(PointIndex: Integer): IPoint

API Calls

Delphi

Code Block
languagedelphi
themeRDark
firstline1
titleUsing IItem Object Model
linenumberstrue
collapsetrue
var  
ps: IPlanSwift;
  est: IItem;
  itm: IItem;
  sect: IItem;
  pt: IPoint;
begin
  // Create Planswift Interface
  ps := coPlanswift.Create;
  // Get the estimating tab
  est := ps.GetItem('Job\Takeoff');
  // Create a NewItem
  itm := est.NewItem('Area', 'GetPoint Example');
  // Create a New Section
  sect := itm.NewSection('GetPoint Section');
  // Add 4 Points to the section on the current page
  sect.NewPoint(0, 0);
  sect.NewPoint(100, 0);
  sect.NewPoint(100, 100);
  sect.NewPoint(0, 100);
  // Show Message that box was drawn
  ShowMessage('Box Drawn');
  // Get the thrid drawn poing
  pt := sect.GetPoint(3);
  // set it to a new postion
  sect.SetPoint(3, pt.X, pt.Y + 100);
  // Show message the the 4th point was moved
  ShowMessage('Point 4 has been Moved');
  // Free Plnaswift
  ps := nil;


Code Block
languagedelphi
firstline1
titleUsing PlanSwift Object Model
linenumberstrue

C#

Code Block
languagec#
themeRDark
firstline1
titleUsing IItem Object Model
linenumberstrue


Code Block
languagec#
themeRDark
firstline1
titleUsing PlanSwift Object Model
linenumberstrue

VB/VBA (OLE)

Code Block
languagevb
firstline1
titleUsing IItem Object Model
linenumberstrue


Code Block
languagevb
firstline1
titleUsing PlanSwift Object Model
linenumberstrue

Pascal Scripting (OLE)

Code Block
firstline1
titleItem Object Model
linenumberstrue


Code Block
titleRoot Object Model
linenumberstrue


Pascal Scripting

Code Block
firstline1
titleItem Object Model
linenumberstrue


Code Block
titleUsing the PlanSwift Object Model
linenumberstrue