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.

Delete

Delete



Deletes the Item and its children from the system.



Syntax:

Procedure: Delete;


API Calls

Delphi

Using PlanSwift Object Model
// PlanSwift Code: 
AreYouSure := False;

If AreYouSure then
  Item.Delete;


//FreshDesk Code:
var  
ps: IPlanSwift;
  est: IItem;
  itm: IItem;
  rslt: Boolean;
  sect: IItem;
begin
//create the Planswift Interface
ps := coPlanswift.Create;
//Get the Estimating tab
  est := ps.GetItem('Job\Takeoff');
  //Create a new Item
  itm := est.NewItem('Area', 'psDelete Example');
  //Show the property dialog box
  rslt := itm.Edit(true);
  //if ok pressed in dialog box then
  if rslt then begin
    //Create a new Section
    sect := itm.NewSection('psDelete Section');
    //Start Recording
    sect.DoRecord;
  end else begin
    //Eles delete the item
    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