Versions Compared

Key

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

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

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

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