IVMRCClientControl::MenuBackColor property

The MenuBackColor property contains the client's menu background color specified in HTML hex string format.

This property is read/write.

Syntax

HRESULT put_MenuBackColor(
  [in]  BSTR menuBackColor
);

HRESULT get_MenuBackColor(
  [out] BSTR *menuBackColor
);

VB
VMRCClientControl.MenuBackColor( _
  ByRef menuBackColor, _
  ByVal menuBackColor _
)

Property value

The client's menu background color specified in HTML hex string format.

This property value is read/write.

Error codes

Name Meaning
S_OK
The operation was successful.
S_FALSE
This property cannot be changed at this time.
E_INVALIDARG
The menuBackColor parameter was NULL.

Remarks

The color is specified using the standard HTML six-digit hex string format. This is in the form of "rrggbb". For example, "000000" represents black, "FFFFFF" represents white, and "FF0000" represents red.

Requirements

Product
Microsoft Virtual Server 2005 onWindows Server 2003
Download
Microsoft Virtual Server 2005 R2 SP1 Update onWindows Server 2008orWindows Server 2003
Header
VMRCClientControl.h
Library
VMRCClientControl.lib

See also

IVMRCClientControl