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.

EditScript

EditScript



Opens the script property in the script editor. If the property is not of type ptScript, this method is ignored.



Syntax:

Procedure: EditScript;


API Calls

Delphi

Using PlanSwift Object Model
PlanSwift Code:


Property.EditScript;


FreshDesk Code:


procedure editScript;
var
  ps: IPlanSwift;
  itm: IItem;
  prop: IPropertyObject;
begin
  //Create the Planswift Interface
  ps := coplanswift.Create;
  //Get the selected Item
  itm := ps.SelectedItem;
  if varisClear(itm) then begin
    ShowMessage('Please Select an Item');
    //Clear Interface
    ps := nil;
    //Exit Procedure
    Exit;
  end;                                     
  //Create new Property with the property type as script
  prop := itm.NewProperty('Example Script','',ptscript);
  //Set the script language to pascal
  prop.ScriptLanguage := slPascal;
  //Open Scripting dialog
  prop.EditScript;
  //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