IsBeta



Returns True if Beta user, False if not.



Syntax:

Procedure: IsBeta: Boolean;

Code Reference:


API Calls

Delphi

PlanSwift Code:


Result := PlanSwift.IsBeta;


FreshDesk Code:


procedure TForm1.psIsBeta(Sender: TObject);
var
  ps: IPlanSwift;
begin
//Create Planswift Interface
ps := coPlanswift.Create;
//Check if planswift is beta
if ps.IsBeta then
  ShowMessage('You are a Beta User')
else
  ShowMessage('Your are not a Beta User');
//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