Versions Compared

Key

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

Delete


...

Deletes the Item and its children from the system.

...

Syntax:

Procedure: Delete;


API

...

Calls

Delphi

Code Block
languagedelphi
themeRDark
firstline1
titleUsing PlanSwift Object Model
linenumberstrue
collapsetrue
// 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#

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