IPlanSwift


This represents the root object of the Document Object Model.

This interface can be accessed from most development IDEs. It can also be used in the PlanSwift script IDE by using the always available "PlanSwift" object. You should never attempt to create or free the PlanSwift object from script.

While most IDE packages will include the PlanSwift DOM for early binding use, the following shows a late binding example.



API Call

Delphi

var
ps:IPlanswift;
begin                             
    ps := coPlanswift.create;
    ps.About;
end; 


Coming soon

C#

using PlanSwift9;
public class PlanswiftApi
{
    private PlanSwift Planswift { get; }
    public PlanswiftApi()
    {
        Planswift = new PlanSwift();
    }
}


Coming soon

VB/VBA (OLE)

Coming soon