ExecuteScript
Executes the script property, passing a CRLF delimited list of parameters. Returns the value assigned to Result in the script.
Syntax:
Procedure:Â ExecuteScript(ParamList: String = ''): Variant;
API Calls
Delphi
PlanSwift Code:
AProp := Item.GetProperty('My Script Property');
If (Not VarIsClear(AProp)) And (AProp.PropertyType = 'Script') Then
Result := AProp.ExecuteScript;
FreshDesk Code:
procedure psExecuteScript;
var
ps: IPlanSwift;
itm: IItem;
prop: IPropertyObject;
formula: string;
begin
//Create The Planswift Interface
ps := coPlanswift.Create;
//Get the Selected Item
itm := ps.SelectedItem;
//Check if var is empty
if varisclear(itm) then begin
showmessage('Please Select an Item');
ps := nil;
Exit;
end;
//write The Script to execute
formula := 'ShowMessage(' + chr(39) + 'Script has been Executed' + chr(39) + ');';
//Create a New Property and set its type to script
prop := itm.NewProperty('Custom Script',formula,ptscript);
//Set the Script type to method
prop.ScriptType := stMethod;
//Set the language to pascal
prop.ScriptLanguage := slPascal;
//Execute the Script
prop.ExecuteScript('');
//Free Planswift interface
ps := nil;
end;
C#
public class PlanswiftApi
{
private PlanSwift Planswift { get; }
public PlanSwiftApi()
{
Planswift = new PlanSwift();
}
}
VB/VBA (OLE)