Edition



Returns the current PlanSwift Edition.



Syntax:

Procedure: Edition;

Code Reference:


API Calls

Delphi

//PlanSwift code:
Result := PlanSwift.Edition;


//FreshDesk Code:
procedure TForm1.psEdition(Sender: TObject);var
  ps: IPlanSwift;
begin
//Create Planswift Interface
ps := coPlanswift.Create;
//Show Edition in Message Window
showMessage(ps.Edition);
//Free 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