GetZoom

SUMMARY

Returns the actual zoom factor of the window defined under Window.

SYNTAX

GetZoom(<window>);

ARGUMENTS

window (type:string)
The zoomed window (in BDC only "BdcRightPane" make sense)

DESCRIPTION

Stack
  1. Missing arguments are taken from the stack (and deleted from there).
  2. Return: The zoom factor as float is pushed onto the stack.

Effect
The actual zoom factor of the window defined under Window is returned.

EXAMPLES

Displays the actual zoom factor in a Text-Field.

GetZoom("BdcRightPane");
SetVal(Text);


Syntax Notation
[aaa]
aaa is optional (zero or one occurences)
(aaa|bbb)
aaa exclusive or bbb
(aaa)*
aaa may occur indefinitely often or may be omitted
(aaa)+
aaa may occur indefinitely often but at least once
(aaa)m..n
aaa may occur from m to n times