![]() | Type | Description | ||
| Color | A color expression that indicates the background color of the editor. |

The following sample assign different background colors for label and the editor as seeing in the screen shot:
With Record1
.BeginUpdate
With .Add("Label (red)", DropDownType)
.Value = "Editor (blue)"
.BackColor = vbBlue
.LabelBackColor = vbRed
.ForeColor = vbWhite
.Position = 0
End With
.EndUpdate
End With