DeleteProperty



Deletes PropertyName from ItemPath.



Syntax:

Procedure: DeleteProperty(ItemPath, PropertyName: String): Boolean;

Code Reference:


API Calls

Delphi

// PlanSwift code:
var
  Result : boolean;
begin
  Result := PlanSwift.DeleteProperty('Item Path', 'Property Name');
end;

// FreshDesk code:
procedure TForm1.psDeleteProperty(Sender: TObject);
var
  ps: IPlanSwift;
  itm: IItem;
begin
  //Create the Planswift Interface
  ps := coplanswift.Create;
  //Get the Selected Item
  itm := ps.SelectedItem;
  //Delete the Description on the selected Item
  ps.DeleteProperty(itm.GUID,'Description');
  //free planswift Interface
  ps := nil;
end;


C#

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


Coming soon


VB/VBA (OLE)

Coming soon


Coming soon