home *** CD-ROM | disk | FTP | other *** search
- /* ToggleFastEdit.pvrx---toggle FastEdit mode on or off.
- Copyright © 1991 by Stylus, Inc.
- (requires v. 2.X.31 or greater) */
-
- /* Always do this for a ProVector AREXX macro */
- 'Lock'
- if RC ~= 0 then exit
-
- 'GetScreenFormat' Var
- if Var.FastEdit=False then Var.FastEdit=True
- else Var.FastEdit=False
- 'SetScreenFormat' Var
-
- /* All done! Unlock ProVector */
- 'UnLock'
-