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.

DeleteProperty (1)

DeleteProperty



Deletes PropertyName from ItemPath.



Syntax:

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

Code Reference:

    1. Navigate to Plugin Store->Tool Manager and create a new Plugin
    2. Set the plugin type to Script Code and open the Editor
    3. Copy Code into the editor
    4. Press run


API Calls

Delphi

Using PlanSwift Object Model
// 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#

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