Show contents 

Visualizators > Visualizators Assembly Interfaces > IVZDataVisualizer > IVZDataVisualizer.UseSelectOnRightClick

IVZDataVisualizer.UseSelectOnRightClick

Syntax

UseSelectOnRightClick: Boolean;

Description

The UseSelectOnRightClick property determines whether to select elements on the right mouse button click.

Comments

Available values:

Example

Executing the example requires that the repository contains an express report with the EXPRESS identifier.

Add links to the Express, Metabase, Visualizators system assemblies.

Sub UserProc;
Var
    Metabase: IMetabase;
    EaxAnalyzer: IEaxAnalyzer;
    BubbleTree: IVZBubbleTree;
Begin
    Metabase := MetabaseClass.Active;
    EaxAnalyzer := Metabase.ItemById("EXPRESS").Edit As IEaxAnalyzer;
    // Get bubble tree
    BubbleTree := EaxAnalyzer.BubbleTree.BubbleTree;
    // Indicates whether elements are selected on the right mouse button click
    BubbleTree.UseSelectOnRightClick := True;
    // Get express report
    (EaxAnalyzer As IMetabaseObject).Save;
End Sub UserProc;

After executing the example bubble tree elements can be selected on the right mouse button click.

See also:

IVZDataVisualizer