AutoCheck property

bool get AutoCheck

Implementation

bool
  get AutoCheck => _autoCheck;
set AutoCheck (bool Value)

Implementation

set AutoCheck(bool Value)
{
  if(_autoCheck == Value)
    return;

  for(var item in _clients)
    if(item is TActionLink)
      item.SetAutoCheck(Value);

  _autoCheck = Value;
  Change();
}