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.

X

X



Gets or Sets the X coordinate for the IPoint.



Syntax:

Procedure: X: Double;


API Calls

Delphi

Using PlanSwift Object Model
// PlanSwift Code:


If Item.PointCount > 0 Then
  Result := Item.GetPoint(0).X;


// FreshDesk Code:


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 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;
end;


C#

Using IItem Object Model
public class PlanswiftApi
{
    private PlanSwift Planswift { get; }
    public PlanSwiftApi()
    {
        Planswift = new PlanSwift();
    }
}
Using PlanSwift Object Model
Coming soon

VB/VBA (OLE)

Using IItem Object Model
Coming soon
Using PlanSwift Object Model
Coming soon

Copyright 2023 ConstructConnect