About
Shows the About PlanSwift Dialog.
Syntax:
Procedure: IPlanswift.About;
Code Reference:
- Create a New Forms Application
- Add a PlanSwift to the References (Planswift_Tlb)
- Add a button to the form
- Copy code below to the onclick event of the button
- 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