ZoomSpeed
...
Integer value that controls the mouse Zoom Speed. Value ranges from 0 to 10. The Main Menu / Settings / Zoom/Pan window (Figure 1) also controls Zoom Speed. Zoom is controlled by the mouse's wheel.
...
Figure 1
API Calls
Delphi
Code Block | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
procedure main; var planswift: IPlanSwift; settings: IItem; property: IPropertyObject begin planswift := coPlanSwift.Create(); settings := planswift.getItem('\Settings'); property := planswift.GetProperty('ZoomSpeed'); WriteLn(property.ResultAsInteger()) end |
...