DADiSP Worksheet Functions > Function Categories > Cursor Functions > MAGNIFY
Enables the cursor to select a region in a window to magnify.
|
mode, msg, cursor, orientation, "onrclick", "onlclick") |
|
mode, msg, cursor, orientation, "onrclick", "onlclick") |
mode |
- |
Optional. An integer, the operation mode:
|
||||||||||||||||||||||||||||
msg |
- |
Optional. An integer the coordinate display method:
|
||||||||||||||||||||||||||||
cursor |
- |
Optional. An integer, the mouse cursor style:
|
||||||||||||||||||||||||||||
orientation |
- |
Optional. An integer, the magnify orientation:
|
||||||||||||||||||||||||||||
"onrclick" |
- |
Optional. A string, the callback function to execute on the mouse right click event. Defaults to empty (none). |
||||||||||||||||||||||||||||
"onlclick" |
- |
Optional. A string, the callback function to execute on the mouse left click event. Defaults to empty (none). |
(x1, y1, x2, y2) = magnify
returns the new magnified coordinates after scaling the plot.
(x, y) = magnify(1)
returns the x, y, coordinates after the mouse click without modifying the plot.
(x1, y1, x2, y2) = magnify(2)
returns the coordinates of the dragged rectangle without modifying the plot.
(x, y) = magnify()
Resizes the plot and returns the coordinates in x and y.
(x, y) = magnify(2)
Does not resize the plot, but the final magnify coordinates are returned in x and y.
magnify(0, 1, -1, 1)
Magnifies the plot horizontally.
MAGNIFY with no arguments performs the same function as the magnifier button in the toolbar.
Use (x, y) = magnify(1) to return the coordinates of a free roaming cursor after a mouse click.
If the magnify operation is canceled, the returned coordinates are unaltered from their original values.
The onrclick and onlclick callbacks specify functions to run when the associated event occurs. For example, consider the following callback function:
/* right click callback */
mgn_onrclick()
{
magnify(0, 1, -1, 0, "mgn_onrclick")
The mgn_onrclick function is invoked when the right mouse button is clicked. In this case, a message is displayed.