To open any link in a new tab, preserving your position in the current article, just hold down the <CTRL> key on your keyboard before clicking the link or click using your mouse wheel.
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 30 Current »

About



Shows the About PlanSwift Dialog.



Syntax:

Procedure: IPlanswift.About;

Code Reference:

  1. Create a New Forms Application
  2. Add a PlanSwift to the References (Planswift_Tlb)
  3. Add a button to the form
  4. Copy code below to the onclick event of the button
  5. Compile and run


API Calls

Delphi

Using PlanSwift Object Model
var
    ps: IPlanswift;
begin                             
    ps := Planswift;
    ps.About;
end;

C#

Using PlanSwift Object Model
public partial class MyForm : Form
{
    // PlanSwift Object
    private PlanSwift Planswift { get; }
    public MyForm()
    {
        InitializeComponent();
        // Instantiate new PlanSwift Object
        Planswift = new PlanSwift();
    }
     
    private void BtnShowAbout_Click(object sender, EventArgs e)
    {
        // Show About Page in PlanSwift
        Planswift.About();
    }
}

VB/VBA (OLE)

Using IItem Object Model
Coming soon
Using PlanSwift Object Model
Coming soon


  • No labels