IEtlBox.View

Syntax

View: IWxView;

Description

The View property determines display settings of ETL task working area.

Example

Executing the example requires a form, a button named the Button1 on the form, the UiEtlObject component named UiEtlObject1 and the EtlBox component named EtlBox1. UiEtlObject1 is selected as a data source for EtlBox1. Any ETL task is connected to UiEtlObject1.

Add links to the Drawing and ETL system assemblies.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Begin
    EtlBox1.View.BackgroundColor := GxColor.FromKnownColor(GxKnownColor.Azure);
End Sub Button1OnClick;

After executing the example, clicking the button changes background color of ETL task working area.

See also:

IEtlBox