tblIRule GetCellList

Returns a string containing a list of cell names that participate in this rule.

Syntax

tblIRule_handle GetCellList

Description

Returns a string containing a list of cell names that participate in this rule.

Example

set t [hw::GetT]
set activetableHandle [hwi GetActiveClientHandle ch$t]
set ruleid [ch$t AddRule]
set ruleHandle [$activetableHandle GetRuleHandle rh$ruleid $ruleid]
$ruleHandle SetCellList "A1 A2 B1 B2"
puts "Rule Id: $ruleid acts on cells [$ruleHandle GetCellList]"
$ruleHandle SetBackgroundColor 3
$ruleHandle SetTextColor 0
$ruleHandle SetValue 10
$ruleHandle SetOperator ">"
$ruleHandle ReleaseHandle

Errors

None.