![]() | Type | Description | ||
| Color | A color expression that specifies the control's background color. |
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