PanSpeed
...
Integer value that controls the mouse Pan Speed. Value ranges from 1 to 9 (see Figure 1).
API Call:
...
Figure 1
API Calls
Delphi
C#
VB/VBA (OLE)
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
Sub main()
Dim planswift = CreateObject("PlanSwift9.PlanCenter")
Dim settings = planswift.GetItem("\Settings")
Dim property = settings.GetProperty("PanSpeed")
Console.WriteLn(property.ResultAsInteger());
End Sub |
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
Sub Main()
Dim planswift = CreateObject("PlanSwift9.PlanCenter")
Dim nameProperty = planswift.GetProperty("\Settings","PanSpeed")
Console.WriteLn(property.ResultAsInteger)
End Sub |