Integer value that returns an ANSI key code (default code 77). The (default hotkey) letter M invokes the Magnefier Magnifier command in PlanSwift (Figure 1).
API Call:
Code Block | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
private void Main() { PlanSwift planswift = new PlanSwift(); IItem settings = planswift.GetItem(@"\Settings"); IPropertyObject property = settings.GetProperty("MagnifierHotKey"); console.WriteLn(property.ResultAsInteger()) } //or private void Main() { PlanSwift planswift = new PlanSwift(); IPropertyObject property = planswift.GetProperty(@"\Settings","MagnifierHotKey") console.WriteLn(property.ResultAsInteger) } |
...
Code Block | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
begin settings := PlanSwift.getItem('\Settings'); property := settings.GetProperty('MagnifierHotKey'); ShowMessage(property.ResultAsInteger); end //or begin property := PlanSwift.GetProperty('\Settings','MagnifierHotKey'); ShowMessage(property.ResultAsInteger); end //or begin settings := getItem('\Settings'); ShowMessage(GetResultAsInteger(settings,'MagnifierHotKey')); end //or begin ShowMessage(GetResultAsInteger('\Settings','MagnifierHotKey')); end |
Figure 1