Juniper Systems Allegro CX Manual User Manual
Page 178

178 Allegro CX Owner’s Manual
Return()
Stops task execution.
Example:
if a1=0
MsgBox(“A1 must not be 0”)
Return()
end
RowHeight([height])
Returns row height of the fi rst row of current selection and sets
height of selected rows if height is specifi ed.
Example:
Sel(A2:A7)
RowHeight(10)
RowHide([hideUnhide])
Returns whether the fi rst row of current selection is hidden and
hides (true) or unhides (false) selected rows if hideUnhide is specifi ed.
Example:
Sel(A2:A5)
RowHide(true)
RunApp(application [,parameters])
Runs and application (program) with optional parameters.
Example:
RunApp(“iexplore.exe”, “http://z4soft.com”)
Save(fi leName )
Saves the current workbook.
Example:
Save(“data.xls”)
Sel([range])
Returns the current selection and select the new one if range is
specifi ed.
Example:
Sel(a2:c12)