IWxView.BackgroundColor

Syntax

BackgroundColor: IGxColor;

BackgroundColor: Prognoz.Platform.Interop.Drawing.IGxColor;

Description

The BackgroundColor property determines workspace field color.

Example

Executing the example requires a form with the Button1 button, the WorkspaceBox component named WorkspaceBox1 and a data source for the WorkspaceBox1.

Add links to the Andy, Drawing, Workspace system assemblies.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
    ws: IWxWorkspace;
    view: IWxView;
Begin
    // Get workspace for editing
    ws := UiWorkspace1.WxWorkspace;
    view := ws.CreateView;
    view := ws.Views.Item(0);
    view.BackgroundColor := New GxColor.CreateRGB(0129255);
End Sub Button1OnClick;
Imports Prognoz.Platform.Interop.Andy;
Imports Prognoz.Platform.Interop.Workspace;
Imports Prognoz.Platform.Interop.Drawing;

 
Private Sub button1_Click(sender: System.Object; e: System.EventArgs);
Var
    ws: IWxWorkspace;
    view: IWxView;

    OutColor: GxColor;
Begin
    
// Get workspace for editing
    ws := uiWorkspaceNet1.WxWorkspace;
    view := ws.CreateView();
    view := ws.Views.Item[
0];
    OutColor := New GxColorClass_2();
    OutColor.CreateRGB(
0129255);
    view.BackgroundColor := OutColor;

End Sub;

After executing the example the color of workspace background is changed.

See also:

IWxView