Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

...

...

...

MagnifierHotKey


...

Integer value that returns an ANSI key code (default code 77). The (default hotkey) letter M invokes the Magnifier command in PlanSwift (Figure 1).

...

Image Added

...

              Figure 1

API Calls

Table of Contents
minLevel3

Delphi

Code Block
languagec#delphi
themeRDark
firstline1
titleC#Using IItem Object Model
linenumberstrue
collapsetrue
private void Main()
{
	PlanSwift planswift = new PlanSwiftprocedure main; 
var
 planswift: IPlanSwift;
 settings: IItem;
 property: IPropertyObject 
begin
 planswift := coPlanSwift.Create();
	IItem settings := planswift.GetItemgetItem(@"'\Settings"');
	IPropertyObject property := settingsplanswift.GetProperty("'MagnifierHotKey"');
 	console.WriteLn(property.ResultAsInteger()) }

//or

private void Main()
{
	PlanSwift planswift = new PlanSwift();
	IPropertyObject property 
end


Code Block
languagedelphi
themeRDark
firstline1
titleUsing PlanSwift Object Model
linenumberstrue
//or 
procedure main; 
var planswift: IPlanSwift;
 property:IPropertyObject;
begin
 planswift := coPlanSwift.Create();
 property := planswift.GetProperty(@"'\Settings"',"'MagnifierHotKey"');
 	console.WriteLn(property.ResultAsInteger()) 
}end;

C#

Code Block
languagedelphic#
themeRDark
firstline1
titleDelphiUsing IItem Object Model
linenumberstrue
collapsetrue
procedure main;
var
	planswift: IPlanSwift;
	settings: IItem;
	property: IPropertyObject
begin
	planswift := coPlanSwift.Createprivate void Main()
{
	PlanSwift planswift = new PlanSwift();
	IItem settings := planswift.getItemGetItem('@"\Settings'");
	IPropertyObject property := planswiftsettings.GetProperty('"MagnifierHotKey'");
	console.WriteLn(property.ResultAsInteger())
end

//or
procedure main;
var
	planswift: IPlanSwift;
	property:IPropertyObject;
begin
	planswift := coPlanSwift.Create}


Code Block
languagec#
themeRDark
firstline1
titleUsing PlanSwift Object Model
linenumberstrue
private void Main()
{
	PlanSwift planswift = new PlanSwift();
	IPropertyObject property := planswift.GetProperty('@"\Settings'",'"MagnifierHotKey'"); 
	console.WriteLn(property.ResultAsInteger()) 
end;)
}

VB/VBA (OLE)

Code Block
languagevb
themeRDark
firstline1
titleVB \ VBA (OLE)Using IItem Object Model
linenumberstrue
collapsetrue
Sub main()
   	 Dim planswift = CreateObject("PlanSwift9.PlanCenter")
    	Dim settings = planswift.GetItem("\Settings")
    	Dim property = settings.GetProperty("MagnifierHotKey")
   	 Console.WriteLn(property.ResultAsInteger());
End Sub


Code Block
languagevb
themeRDark
firstline1
titleUsing PlanSwift Object Model
linenumberstrue
Sub Main()
//or  Sub Main() 	Dim planswift = CreateObject("PlanSwift9.PlanCenter")
    	Dim nameProperty = planswift.GetProperty("\Settings","MagnifierHotKey")
  	  Console.WriteLn(property.ResultAsInteger)
End Sub

Pascal Scripting (OLE)

delphi
Code Block
language
themeRDark
firstline1
titlePlanSwift ScriptingItem Object Model
linenumberstrue
collapsetrue
begin
	    settings := PlanSwift.getItem('\Settings');
  	property := settings.GetProperty(ShowMessage(GetResultAsInteger(settings,'MagnifierHotKey');
	ShowMessage(property.ResultAsInteger);
end

//or

begin
	property := PlanSwift.GetProperty


Code Block
themeRDark
titleRoot Object Model
linenumberstrue
begin
   ShowMessage(GetResultAsInteger('\Settings','MagnifierHotKey');
	ShowMessage(property.ResultAsInteger);
end
//or

begin
	

Pascal Scripting

Code Block
themeRDark
firstline1
titleItem Object Model
linenumberstrue
begin
    settings := PlanSwift.getItem('\Settings');
	ShowMessage(GetResultAsInteger(settings,
    property := settings.GetProperty('MagnifierHotKey');
    ShowMessage(property.ResultAsInteger);
end

//or

begin
   ShowMessage(GetResultAsInteger(


Code Block
themeRDark
titleUsing the PlanSwift Object Model
linenumberstrue
begin
    property := PlanSwift.GetProperty('\Settings','MagnifierHotKey');
    ShowMessage(property.ResultAsInteger);
end

Image Removed

...