expression.BackgroundColor As Color
where expression is a variable that represents a ThemeColor Object
expression.BackgroundColor As Color
Public Sub ChangeThemeBackgroundColor() 'Declare and set a Themecolor object Dim color As Attachmate_Reflection_Objects_Emulation_IbmHosts.ThemeColor Set color = ThisIbmTerminal.Theme.ThemeColor 'Set the screen Background color color.BackgroundColor = RGB(200, 200, 50) 'Save the changes in a new theme to prevent InfoConnect from requesting to save new theme ThisIbmTerminal.Theme.SaveAs (Environ$("USERPROFILE") & "\Documents\Micro Focus\InfoConnect\Themes\myTheme.themex") End Sub