Yes you can. Here is a VBA sample to access the HUD display options:
Sub HUDOptions()
Dim oHUD As HeadsUpDisplayOptions
Set oHUD = ThisApplication.SketchOptions.HeadsUpDisplayOptions
oHUD.Enabled = True
oHUD.PointerInputEnabled = True
oHUD.DimensionInputEnabled = True
End Sub
