ITreeView

Mobilize.QualityMate.ControlInterfaces

ITreeView Interface

Defines the basic interactions for TreeView controls.

public interface ITreeView :
Mobilize.QualityMate.ControlInterfaces.IControl,
Mobilize.QualityMate.ControlInterfaces.Behavior.IValidatable,
Mobilize.QualityMate.ControlInterfaces.Behavior.IList<Mobilize.QualityMate.ControlInterfaces.IElement>

Implements IControl, IValidatable, Mobilize.QualityMate.ControlInterfaces.Behavior.IList<IElement>

Methods

ITreeView.CollapseNode(string[]) Method

Navigates and collapses until the specified node path.

void CollapseNode(params string[] path);

Parameters

path System.String[]

The tree path to the desired node.

ITreeView.ExpandNode(string[]) Method

Navigates and expands until the specified node path.

void ExpandNode(params string[] path);

Parameters

path System.String[]

The node text to hit.

ITreeView.GetNode(string[]) Method

Navigates and gets the node specified in the path as a UiPlayer control.

Mobilize.QualityMate.ControlInterfaces.IElement GetNode(params string[] path);

Parameters

path System.String[]

The tree path to the desired node.

Returns

IElement The node found on the specified path.

Last updated