Window.HasBackColor

From Xojo Documentation

Property (As Boolean )
aWindow.HasBackColor = newBooleanValue
or
BooleanValue = aWindow.HasBackColor

Supported for all project types and targets.

If True, the background color of the window is set to the value of the Backcolor property.

Notes

This property must be set in order for the value of the BackColor property to be applied to the window.

Example

This example sets the HasBackColor property and sets the value of the BackColor property.

Me.HasBackColor = True
Me.BackColor = &c110034