Using Attachment.DisplayFlag can control a reference display on or off in MicroStation VBA. The below is a code snippet to make all refs display off. FYI
Sub TurnOffAllRefDisplay() Dim att As Attachment For Each att In ActiveModelReference.Attachments att.DisplayFlag = False Next End Sub