|  | 
   
 |   |  |   
  
    | CSS::DOM::Value::Primitive(3) | User Contributed Perl Documentation | CSS::DOM::Value::Primitive(3) |  
CSS::DOM::Value::Primitive - CSSPrimitiveValue class for
  CSS::DOM This module implements objects that represent CSS primitive
    property values (as opposed to lists). It implements the DOM
    CSSPrimitiveValue, Rect, and RGBColor interfaces. If you need the constructor, it's below the object methods.
    Normally you would get an object via CSS::DOM::Style's
    "getPropertyCSSValue" method. 
  cssTextReturns a string representation of the attribute. Pass an argument to set
      it.cssValueTypeReturns
      "CSS::DOM::Value::CSS_PRIMITIVE_VALUE". 
  primitiveTypeReturns one of the "CONSTANTS" listed below.getFloatValueReturns a number if the value is numeric. The rest have still to be implemented. The four methods "top",
    "right",
    "bottom" and
    "left" each return another value object
    representing the individual value. The four methods "red",
    "green",
    "blue" and
    "alpha" each return another value object
    representing the individual value. You probably don't need to call this, but here it is anyway:   $val = new CSS::DOM::Value::Primitive:: %args;
 The hash-style arguments are as follows. Only
    "type" and
    "value" are required. 
  typeOne of the constants listed below under "CONSTANTS"valueThe data stored inside the value object. The format expected depends on
      the type. See below.cssCSS code used for serialisation. This will make reading
      "cssText" faster at least until the
      value is modified.ownerThe style object that owns this value; if this is omitted, then the value
      is read-only. The value object holds a weak reference to the owner.propertyThe name of the CSS property to which this value belongs.
      "cssText" uses this to determine how to
      parse text passed to it. This does not apply to the sub-values of colours,
      counters and rects, but it does apply to individual elements of a
      list value.indexThe index of this value within a list value (only applies to elements of a
      list, of course).formatThis is used by sub-values of colours and rects. It determines how
      assignment to "cssText" is handled. This
      uses the same syntax as the formats in CSS::DOM::PropertyParser. Here are the formats for the
    "value" argument, which depend on the
    type: 
  CSS_UNKNOWNA string of CSS code.CSS_NUMBER,
    CSS_PERCENTAGEA simple scalar containing a number.Standard
    DimensionsAlso a simple scalar containing a number.
    This applies to "CSS_EMS",
        "CSS_EXS",
        "CSS_PX",
        "CSS_CM",
        "CSS_MM",
        "CSS_IN",
        "CSS_PT",
        "CSS_PC",
        "CSS_DEG",
        "CSS_RAD",
        "CSS_GRAD",
        "CSS_MS",
        "CSS_S",
        "CSS_HZ" and
        "CSS_KHZ".CSS_DIMENSIONAn array ref: "[$number,
    $unit_text]"CSS_STRINGA simple scalar containing a string (not a CSS string literal; i.e., no
      quotes or escapes).CSS_URIThe URL (not a CSS literal)CSS_IDENTA string (no escapes)CSS_ATTRA string containing the name of the attribute.CSS_COUNTERAn array ref: "[$name, $separator,
      $style]"
    $separator and
        $style may each be
        "undef". If
        $separator is
        "undef", the object represents a
        counter(...). Otherwise it represents
        counters(...).CSS_RECTAn array ref: "[$top, $right, $bottom,
      $left]"
    The four elements are either CSSValue objects or array refs of
        arguments to be passed to the constructor. E.g.:  [
     [type => CSS_PX, value => 20],
     [type => CSS_PERCENTAGE, value => 50],
     [type => CSS_PERCENTAGE, value => 50],
     [type => CSS_PX, value => 50],
 ]
    When these array refs are converted to objects, the
        "format" argument is supplied
        automatically, so you do not need to include it here.CSS_RGBCOLORA string beginning with '#', with no escapes (such as '#fff' or
      '#c0ffee'), a colour name (like red) or an array ref with three to four
      elements:
    
     [$r, $g, $b]
 [$r, $g, $b, $alpha]
    The elements are either CSSValue objects or array refs of
        argument lists, as with
      "CSS_RECT". CSS::DOM CSS::DOM::Value CSS::DOM::Value::List CSS::DOM::Style 
  Visit the GSP FreeBSD Man Page Interface. Output converted with ManDoc.
 |