SetRightEye Last update: 17.07.2025 Description Sets the visualization mode in right eye alone. Returns 1 if the call has succeeded, 0 otherwise. Syntax object.SetRightEye() As Int object: Virtual Reality Lab object Example Sub SetRightEye() 'Error Management Dim Error As Integer 'Declare VRLab Dim VirtualRealityLab As Object Set VirtualRealityLab = CreateObject("HDRIViewer.Application") 'Show VRLab Error = VirtualRealityLab.Show(True) 'Open File Error = VirtualRealityLab.OpenFile("U:\AMT\API VRLab\InteriorCar.speos360") 'Set Luminance Max Error = VirtualRealityLab.SetLuminanceMax(100) 'Change Vizualisation Mode Error = VirtualRealityLab.SetRightEye() MsgBox ("Right Eye Set") End Sub