BackgroundColor: IGxColor;
The BackgroundColor property determines workspace field color.
Executing the example requires an existing ws object of the IWxWorkspace type.
Sub UserProc;
Var
ws: IWxWorkspace;
view : IWxView;
Begin
view := ws.Views.Item(0);
view.BackgroundColor := New GxColor.CreateRGB(0,129,255);
End Sub UserProc;
After executing the example the color of workspace background is changed.
See also: