IEtlBox.ActiveTool

Fore Syntax

ActiveTool: WxTool;

Fore.NET Syntax

ActiveTool: Prognoz.Platform.Interop.Andy.WxTool;

Description

The ActiveTool property determines the active tool of the ETL task working area.

Comments

The property is set to WxTool.SelectOnly by default.

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. Add a link to the Andy system assembly.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Begin
    EtlBox1.ActiveTool := WxTool.Hand;
End Sub Button1OnClick;

On pressing the button the hand-shaped pointer is selected as an active tool that enables the user to change the ETL task viewable area.

See also:

IEtlBox