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