* @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ * @package Prado\Web\UI\WebControls */ namespace Prado\Web\UI\WebControls; /** * TWizardNavigationButtonType class. * TWizardNavigationButtonType defines the enumerable type for the possible types of buttons * that can be used in the navigation part of a {@link TWizard}. * * The following enumerable values are defined: * - Button: a regular click button * - Image: an image button * - Link: a hyperlink button * * @author Qiang Xue * @package Prado\Web\UI\WebControls * @since 3.0.4 */ class TWizardNavigationButtonType extends \Prado\TEnumerable { const Button='Button'; const Image='Image'; const Link='Link'; }