Edition



Returns the current PlanSwift Edition.



Syntax:

Procedure: Edition;

Code Reference:


API Call:

//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;
public class PlanswiftApi
{
    private PlanSwift Planswift { get; }
    public PlanSwiftApi()
    {
        Planswift = new PlanSwift();
    }
}
Coming soon
Coming soon
Coming soon