The grid display will not stay turned off after turning it off in all views and saving the settings. Each time I have done this it comes back on. I do not need to use it when I am working the 3d model where it is particularly distracting.
I know about the view attributes but is there a key-in that just turns the grid display off?
The View Attributes command and the key-in are toggles and are of no help with this.
I have a basic command routine that fits the drawing to full view when I click the Open command icon:
'created 01/23/2015
'*************************************************************************************************
Sub main
'Dim startPoint As MbePoint
'Dim point As MbePoint, point2 As MbePoint
'*************************************************************************************************
' BEGIN SET UP OF VIEW ONE DISPLAY
' PLACE VIEW ONE DISPLAY SETTINGS HERE
' SETS THE DISPLAY WINDOW FOR VIEW ONE
' Start a command
MbeSendCommand "view off all "
' BEGIN SET UP OF VIEW ONE
' BEGIN SET UP OF VIEW ONE
' BEGIN SET UP OF VIEW ONE
MbeSendCommand "VIEW ON 1 "
MbeSendCommand "WINDOW TILE "
MbeSendCommand "FIT VIEW EXTENDED "
'========================
'REVISED 09/28/2016 REMOVED ALL SETTINGS FOR AXIS SNAPS AND ASSOCIATION
'========================
' MbeSendKeyin "CT=J:/color.tbl " '08/28/2015 blm
' MbeSendCommand "lock axis off "
' MbeSendCommand "active axis 90 "
' MbeSendCommand "accusnap off "
' MbeSendCommand "lock snap keypoint "
' MbeSendCommand "lock association on "
MbeSendCommand "filedesign "
MbeSendCommand "dialog openfile "
' END SET UP
End Sub