IVMRCClientControl::MenuFontColor property

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

This property is read/write.

Syntax

HRESULT put_MenuFontColor(
  [in]  BSTR menuBackColor
);

HRESULT get_MenuFontColor(
  [out] BSTR *menuFontColor
);

VB
VMRCClientControl.MenuFontColor( _
  ByRef menuFontColor, _
  ByVal menuBackColor _
)

Property value

The client's menu font 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 menuFontColor 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