IEtlBox.View

Fore Syntax

View: IWxView;

Fore.NET Syntax

View: Prognoz.Platform.Interop.Andy.IWxView;

Description

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

Fore Example

Executing the example requires a form with a button named Button1, 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. Connect to the Drawing system assembly.

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

Clicking the button changes background color of ETL task working area.

See also:

IEtlBox