|
Returns a reference (or const reference in the 2nd variety) to the stylesheet item at the specified index.
stylesheet_item& stylesheet::at(1st Variety
size_type n
);
const stylesheet_item& stylesheet::at(2nd Variety
size_type n
) const;
An index specifying the stylesheet_item to return.
A reference (or const reference in the 2nd variety) of the stylesheet_item which resides at the specified index.
Returns a reference (or const reference in the 2nd variety) of the stylesheet_item
which resides at the specified index. Caller must
insure that n is in a valid range. This operation is exception safe. If n is out of valid range, a std::out_of_range
exception will be
thrown.
Constant