public function __get($strName)
 {
     switch ($strName) {
         case 'Disabled':
             return $this->blnDisabled;
         case 'Icons':
             return $this->mixIcons;
         case 'Label':
             return $this->strLabel;
         case 'JqText':
             return $this->blnJqText;
         default:
             try {
                 return parent::__get($strName);
             } catch (QCallerException $objExc) {
                 $objExc->IncrementOffset();
                 throw $objExc;
             }
     }
 }