BackColor Property

3D Graph Control

BackColor Property

Syntax

CWGraph3D.BackColor

Data Type

Color

Purpose

Specifies the color for the background of the caption.

Remarks

The caption appears above the 3D graph.

Example

'Create the caption "Temperature vs. Time"
CWGraph3D1.Caption = "Temperature vs. Time"
'Set the caption text color to red
CWGraph3D1.CaptionColor = vbRed
'Set the caption background color to green
CWGraph3D1.BackColor = vbGreen
'Set the caption font to bold
CWGraph3D1.Font.Bold = True