InfoConnect VBA Guide
Attachmate.Reflection.Objects.Emulation.Common Library / ThemeColor Object / BackgroundColor Property
Example
In This Topic
    BackgroundColor Property (ThemeColor)
    In This Topic
    Gets or sets the text screen background color when IsBackgroundSingleColor is true.
    Syntax
    expression.BackgroundColor As Color
    where expression is a variable that represents a ThemeColor Object
    Remarks
    The get throws an exception when IsBackgroundSingleColor is false. Setting the text screen background color also sets the IsBackgroundSingleColor property to true.
    Example
    Attachmate.Reflection.Emulation.Common.ThemeColor color
                
    Function GetBackgroundColor() As Color
      If color.IsBackgroundSingleColor Is true
         Return color.BackgroundColor
      Else
         Return Nothing
    End Function
    See Also