Unchecks all check boxes in a given column.

Syntax

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

Parameters

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

Remarks

The UncheckAll method unchecks 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 check all check boxes, use the CheckAll method.

Example

// Uncheck all check boxes in column 1
Send_Message(@Window:".OLE_REPORTTABLE", "OLE.UncheckAll", 1)

See Also

CheckAll