public function __get($strName)
 {
     switch ($strName) {
         case "Href":
             return $this->Attr('href');
         default:
             try {
                 return parent::__get($strName);
             } catch (QCallerException $objExc) {
                 $objExc->IncrementOffset();
                 throw $objExc;
             }
     }
 }
 public function __get($strName)
 {
     switch ($strName) {
         case "RenderOnLoad":
             return $this->blnRenderOnLoad;
         case "Transition":
             return $this->strTransition;
         default:
             try {
                 return parent::__get($strName);
             } catch (QCallerException $objExc) {
                 $objExc->IncrementOffset();
                 throw $objExc;
             }
     }
 }
 public function __get($strName)
 {
     switch ($strName) {
         // APPEARANCE
         case "Columns":
             return $this->Attr('columns');
         case "Placeholder":
             return $this->Attr('placeholder');
             // BEHAVIOR
         // BEHAVIOR
         case "MaxLength":
             return $this->Attr('maxlength');
         case "MinLength":
             return $this->Attr('minlength');
         case "ReadOnly":
             return $this->Attr('readonly');
         case "Rows":
             return $this->Attr('rows');
         case "CrossScripting":
             return $this->strCrossScripting;
         case "TextMode":
             return $this->strTextMode;
         default:
             try {
                 return parent::__get($strName);
             } catch (QCallerException $objExc) {
                 $objExc->IncrementOffset();
                 throw $objExc;
             }
     }
 }