IGrid

Mobilize.QualityMate.ControlInterfaces

IGrid Interface

Defines the basic interactions for Grid controls.

public interface IGrid :
Mobilize.QualityMate.ControlInterfaces.IControl,
Mobilize.QualityMate.ControlInterfaces.Behavior.IValidatable

Implements IControl, IValidatable

Properties

IGrid.ColumnCount Property

Gets column count of the grid.

int ColumnCount { get; }

Property Value

System.Int32

IGrid.Header Property

Gets a collection of the grid header items.

Mobilize.QualityMate.ControlInterfaces.Behavior.IList<Mobilize.QualityMate.ControlInterfaces.IElement> Header { get; }

Property Value

Mobilize.QualityMate.ControlInterfaces.Behavior.IList<IElement>

IGrid.RowCount Property

Gets row count of the grid.

int RowCount { get; }

Property Value

System.Int32

IGrid.Rows Property

Gets a collection of the grid rows.

System.Collections.Generic.IEnumerable<Mobilize.QualityMate.ControlInterfaces.Behavior.IList<Mobilize.QualityMate.ControlInterfaces.IElement>> Rows { get; }

Property Value

System.Collections.Generic.IEnumerable<Mobilize.QualityMate.ControlInterfaces.Behavior.IList<IElement>>

IGrid.this[int] Property

Gets a row based on its index.

Mobilize.QualityMate.ControlInterfaces.Behavior.IList<Mobilize.QualityMate.ControlInterfaces.IElement> this[int index] { get; }

Parameters

index System.Int32

The index of the row.

Property Value

Mobilize.QualityMate.ControlInterfaces.Behavior.IList<IElement>

IGrid.this[string] Property

Gets the first control in the list with the specified text.

Mobilize.QualityMate.ControlInterfaces.Behavior.IList<Mobilize.QualityMate.ControlInterfaces.IElement> this[string text] { get; }

Parameters

text System.String

The control's text to query.

Property Value

Mobilize.QualityMate.ControlInterfaces.Behavior.IList<IElement>

Last updated