Documentation is available at PaddingRightSP.class.php
- <?php
- require_once(HARMONI."GUIManager/StyleProperty.class.php");
- require_once(HARMONI."GUIManager/StyleComponents/LengthSC.class.php");
- /**
- * The PaddingRightSP represents the 'padding-right' StyleProperty.
- *
- * A StyleProperty (SP) is one of the tree building pieces of CSS styles. It stores
- * information about a single CSS style property by storing one or more
- * <code>StyleComponents</code>.
- *
- * The other two CSS styles building pieces are <code>StyleComponents</code> and
- * <code>StyleCollections</code>.
- *
- * @package harmoni.gui.sps
- *
- * @copyright Copyright © 2005, Middlebury College
- * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License (GPL)
- *
- * @version $Id: PaddingRightSP.class.php,v 1.6 2006/06/02 15:56:08 cws-midd Exp $
- */
- class PaddingRightSP extends StyleProperty {
- /**
- * The constructor.
- * @access public
- * @param string length The length of padding.
- ***/
- function PaddingRightSP($length) {
- $this->StyleProperty("padding-right", "Right Padding", "This property specifies the right padding.");
- if (!is_null($length)) $this->addSC(new LengthSC($length));
- }
- }
- ?>
Documentation generated on Wed, 19 Sep 2007 10:25:26 -0400 by phpDocumentor 1.3.0RC3