How to turn on or off the View Display of levels with a key-in?
The "set levels on/off" key-in allows user to turn off the View Display of any level by name/number specification.The syntax according to current MicroStation documentation is as follows:Key-in: SET LEVELS < OFF | ON > [ level-spec ] For example, to turn off level number 1, the key-in sytax would be: set levels off 1Similarly, if you had a level name, say "Curb_Gutter", then the key-in syntax for the same thing would be: set levels off Curb_GutterTo turn on/off all levels in the DGN (with exception to the current active level) through key-in type: set levels on/off allNote that for these key-ins, you will be prompted to select the desired view to turn on/off levels in.If you wish to implement this key-in within a batch routine, you can use the following syntax:set levels on/off all;selview 1
SET
LEVELS
OFF
ON
level-spec
This will turn off all levels in view 1.