QCalendar::__get PHP Method

__get() public method

public __get ( $strName )
    public function __get($strName)
    {
        switch ($strName) {
            case 'CalendarImageSource':
                return $this->strCalendarImageSource;
            case 'DateTime':
                return $this->dtxLinkedControl->DateTime;
            case 'JavaScriptSetDateOverride':
                return $this->strJavaScriptSetDateOverride;
            case 'HideOnClickAway':
                return $this->blnHideOnClickAway;
            default:
                try {
                    return parent::__get($strName);
                } catch (QCallerException $objExc) {
                    $objExc->IncrementOffset();
                    throw $objExc;
                }
        }
    }