Versions Compared

Key

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

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.

...

Image RemovedImage Added

              Figure 1

API Calls

Delphi

Code Block
languagedelphi
themeRDark
firstline1
titleUsing IItem Object Model
linenumberstrue
collapsetrue
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

...