Checks all check boxes in a given column.

Syntax

rv = Send_Message(Ctrl, "OLE.CheckAll", Column)

Parameters

ParameterDescription
ColumnThe index to the column whose check boxes to check.

Remarks

The CheckAll method checks all check boxes in the given column. Keep in mind that column order is ignored. Column 2, for example, is always column 2 even if the user moved it to another position. If you want to uncheck all check boxes, use the UncheckAll method.

Example

// Check all check boxes in column 2
Send_Message(@Window:".OLE_REPORTTABLE", "OLE.CheckAll", 2)

See Also

UncheckAll

  • No labels