CurrentVersion



Returns the current version of the active PlanSwift application.



Syntax:

Procedure: CurrentVersion;

Code Reference:


API Calls

Delphi

//PlanSwift code:
var
  sVersion: string;
begin
  sVersion := PlanSwift.CurrentVersion;
end;

//FreshDesk code:
procedure TForm1.psCurrentVersion(sender: TObject);
var
  ps: IPlanSwift;
begin
//Create Planswift Interface
ps := coPlanswift.Create;
//Show Current Version of Planswift
ShowMessage(ps.CurrentVersion);
//Free the 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