...
- First is that the FieldName property is required.
- Second, set the FieldBackgroundColor property in order to set the background color. Make sure the value is a hex code or hexadecimal number.
...
- (Optional) The default color for the FieldBackgroundColor can be set by removing the entire line containing .FieldBackgroundColor = "#FF0000"
Examples:
VBNET:
objQFE.AddFieldToForm(New FormField() With {
.FieldName = "1own.M.City",.FieldBackgroundColor = "#FF0000"})
...