property CalcEdit.BackColor as Color
Specifies the control's background color.

TypeDescription
Color A color expression that specifies the control's background color.
Use the BackColor and ForeColor properties to define the control's background and foreground colors. Use the Picture property to assign a picture on the control's background.

The following VB sample changes the control's background color:

With CalcEdit1
    .BackColor = ColorConstants.vbWhite
End With

The following C++ sample changes the control's background color:

m_calcEdit.SetBackColor( RGB(255,255,255) );

The following VB.NET sample changes the control's background color:

With AxCalcEdit1
    .BackColor = Color.White
End With

The following C# sample changes the control's background color:

axCalcEdit1.BackColor = Color.White;

The following VFP sample changes the control's background color:

With thisform.CalcEdit1.Object
	.BackColor = RGB(255,255,255)
endwith