IVMRCClientControl::ReducedColorsMode property

The ReducedColorsMode property indicates whether the client's reduced-colors mode is enabled.

This property is read/write.

Syntax

HRESULT put_ReducedColorsMode(
  [in]  VARIANT_BOOL reducedColorsMode
);

HRESULT get_ReducedColorsMode(
  [out] VARIANT_BOOL *reducedColorsMode
);

VB
VMRCClientControl.ReducedColorsMode( _
  ByRef reducedColorsMode, _
  ByVal reducedColorsMode _
)

Property value

Contains vbTrue if the client's reduced-colors mode is enabled.

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 reducedColorsMode parameter was NULL.

Remarks

When the client's reduced-colors mode is enabled, the virtual machine screen displays are drawn with a limited color palette. This reduces the amount of data sent from the VMRC server to the client, allowing faster updates to occur over slow network connections.

Note

Enabling this feature takes affect when a new connection is made. It cannot be changed for an already established connection.

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