QRadioButtonList::__get PHP Method

__get() public method

public __get ( $strName )
    public function __get($strName)
    {
        switch ($strName) {
            // APPEARANCE
            case "TextAlign":
                return $this->strTextAlign;
                // BEHAVIOR
            // BEHAVIOR
            case "HtmlEntities":
                return $this->blnHtmlEntities;
                // LAYOUT
            // LAYOUT
            case "CellPadding":
                return $this->intCellPadding;
            case "CellSpacing":
                return $this->intCellSpacing;
            case "RepeatColumns":
                return $this->intRepeatColumns;
            case "RepeatDirection":
                return $this->strRepeatDirection;
            default:
                try {
                    return parent::__get($strName);
                } catch (QCallerException $objExc) {
                    $objExc->IncrementOffset();
                    throw $objExc;
                }
        }
    }