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.

Edit

Edit



Displays the Item in the Editor Dialog.



Syntax:

Procedure: Edit(ShowAdvanced: Boolean = True): Boolean;


API Calls

Delphi

Using PlanSwift Object Model
// PlanSwift Code:


Result := Item.Edit(False);

FreshDesk Code:


var  
ps: IPlanSwift;
  est: IItem;
  itm: IItem;
  sect: IItem;
  rslt: Boolean;
begin
  // Create Planswift Interface
  ps := coPlanswift.Create;
  // Get The Estimating Tab
  est := ps.GetItem('Job\Takeoff');
  // Create a New Area Item
  itm := est.NewItem('Area', 'DoRecord Example');
  // Open the Property Editor
  rslt := itm.Edit(true);
  // if ok was pressed then record the item else delete the item
  if rslt then
  begin
    sect := itm.NewSection('DoRecord Section');
    sect.DoRecord;
  end
  else
  begin
    itm.Delete;
  end;
  // Free planswift
  ps := nil;


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