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 15 Current »

Connecting with COM



C# and Delphi code examples below show how API is accessed via COM.



API Calls

Delphi

Using IItem Object Model
procedure main;
var
 planswift: IPlanSwift;
 settings: IItem;
 property: IPropertyObject
begin
 planswift := coPlanSwift.Create();
 settings := planswift.getItem('\Settings');
 property := planswift.GetProperty('AllowExtenderDPI');
 WriteLn(property.RResultAsBoolean())
end
Using PlanSwift Object Model
//or 
procedure main;
var
 planswift: IPlanSwift;
 property:IPropertyObject;
begin planswift := coPlanSwift.Create();
 property := planswift.GetProperty('\Settings','AllowExtenderDPI');
  WriteLn(property.ResultAsBoolean()) 
end;

C#

Using IItem Object Model
private void Main()
{
	PlanSwift planswift = new PlanSwift();
	IItem settings = planswift.GetItem(@"\Settings");
	IPropertyObject property = settings.GetProperty("AllowExtenderDPI");
	console.WriteLn(property.ResultAsBoolean())
}
Using PlanSwift Object Model
private void Main()
{
	PlanSwift planswift = new PlanSwift();
	IPropertyObject property = planswift.GetProperty(@"\Settings","AllowExtenderDPI")
	console.WriteLn(property.ResultAsBoolean)
}



  • No labels