OnItemDelete



Triggered when an item is deleted. ItemPath specifies which item is deleted.



Syntax:

Procedure: OnItemDelete(ItemPath: String);


API Calls

Delphi

PlanSwift and FreshDesk Code:


Procedure ItemDeleted(ItemPath: String);
Begin
  // Process as needed here..
End;

PlanSwift.OnItemDelete := ItemDeleted;


Coming soon

C#

public class PlanswiftApi
{
    private PlanSwift Planswift { get; }
    public PlanSwiftApi()
    {
        Planswift = new PlanSwift();
    }
}


Coming soon

VB/VBA (OLE)

Coming soon


Coming soon