QIntegerTextBox::__get PHP Method

__get() public method

public __get ( $strName )
    public function __get($strName)
    {
        switch ($strName) {
            // MISC
            case "Maximum":
                return $this->intMaximum;
            case "Minimum":
                return $this->intMinimum;
            case 'LabelForInvalid':
                return $this->strLabelForInvalid;
            case 'LabelForGreater':
                return $this->strLabelForGreater;
            case 'LabelForLess':
                return $this->strLabelForLess;
            default:
                try {
                    return parent::__get($strName);
                } catch (QCallerException $objExc) {
                    $objExc->IncrementOffset();
                    throw $objExc;
                }
        }
    }