Cssvaluelist class for css::dom
Version 0.15
# ...
This module implements objects that represent \s-1CSS\s0 list property values. It implements the \s-1DOM\s0 CSSValueList interface.
You can access the individual elements of the list using the \*(C`item\*(C' and \*(C`length\*(C' methods, or by using it as an array ref.
If you need the constructor, it's below the object methods. Normally you would get an object via CSS::DOM::Style's \*(C`getPropertyCSSValue\*(C' method.
Returns a string representation of the attribute. Pass an argument to set it.
Returns \*(C`CSS::DOM::Value::CSS_PRIMITIVE_VALUE\*(C'.
Returns the 'primitive' value at the given index.
Returns the number of values in the list.
You probably don't need to call this, but here it is anyway:
$val = new CSS::DOM::Value::List:: %args;
The hash-style arguments are as follows. Only \*(C`values\*(C' is required.
This must be an array ref containing the individual values to be stored in the list. The individual elements can be value objects or array refs of arguments to pass to \*(C`new CSS::DOM::Value::Primitive\*(C'. E.g., [ [type => CSS_PX, value => 20], [type => CSS_PERCENTAGE, value => 50], [type => CSS_PERCENTAGE, value => 50], [type => CSS_PX, value => 50], ]
\s-1CSS\s0 code used for serialisation. This will make reading \*(C`cssText\*(C' faster at least until the value is modified.
The value separator used in serialisation. This is usually ' ' or ', '. An empty string or \*(C`undef\*(C' is treated as a space.
The 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.
The name of the \s-1CSS\s0 property to which this value belongs. \*(C`cssText\*(C' 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.
\s-1CSS::DOM\s0
CSS::DOM::Value
CSS::DOM::Value::Primitive
CSS::DOM::Style