Version

SelectMultiple Method (WinGridReplayServer)

Selects multiple rows, columns, and cells in a grid
Syntax
'Declaration
 
Public Overridable Sub SelectMultiple( _
   ByVal rows As System.String, _
   ByVal columns As System.String, _
   ByVal cells As System.String _
) 
public virtual void SelectMultiple( 
   System.string rows,
   System.string columns,
   System.string cells
)

Parameters

rows
String representation of a grid row
columns
String representation of a grid column
cells
String representation of grid cells
Remarks

Each string specifies all of the selected objects of that type. Multiple items in each string are separated with the �|� character. Rows are specified in extended row path format. Columns are specified in �n;name� format where n is the band level (0 based) and name is the column key or column index. Cells are specified in �rowPath@Column� format where column is the column key or column index. Although you can specify both selected rows and cells, that combination is not allowed by the grid. To unselect everything, leave all three strings empty.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also