Prado\Web\UI\WebControls\TWizard::applyHeaderProperties PHP Method

applyHeaderProperties() protected method

Applies properties to the wizard header
protected applyHeaderProperties ( )
    protected function applyHeaderProperties()
    {
        if (($style = $this->getViewState('HeaderStyle', null)) !== null) {
            $this->_header->getStyle()->mergeWith($style);
        }
        if ($this->getHeaderTemplate() === null) {
            $this->_header->getControls()->clear();
            $this->_header->getControls()->add($this->getHeaderText());
        }
    }
TWizard