The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

HTML::Object::DOM::Element::Param - HTML Object DOM Param Class

SYNOPSIS

    use HTML::Object::DOM::Element::Param;
    my $param = HTML::Object::DOM::Element::Param->new || 
        die( HTML::Object::DOM::Element::Param->error, "\n" );

VERSION

    v0.2.0

DESCRIPTION

This interface provides special properties (beyond those of the regular HTML::Object::Element object interface it inherits) for manipulating <param> elements, representing a pair of a key and a value that acts as a parameter for an <object> element.

INHERITANCE

    +-----------------------+     +---------------------------+     +-------------------------+     +----------------------------+     +-----------------------------------+
    | HTML::Object::Element | --> | HTML::Object::EventTarget | --> | HTML::Object::DOM::Node | --> | HTML::Object::DOM::Element | --> | HTML::Object::DOM::Element::Param |
    +-----------------------+     +---------------------------+     +-------------------------+     +----------------------------+     +-----------------------------------+

PROPERTIES

Inherits properties from its parent HTML::Object::DOM::Element

name

Is a string representing the name of the parameter. It reflects the name attribute.

See also Mozilla documentation

type

Is a string containing the type of the parameter when valueType has the "ref" value. It reflects the type attribute.

See also Mozilla documentation

value

Is a string representing the value associated to the parameter. It reflects the value attribute.

See also Mozilla documentation

valueType

Is a string containing the type of the value. It reflects the valuetype attribute and has one of the values: "data", "ref", or "object".

See also Mozilla documentation

METHODS

Inherits methods from its parent HTML::Object::DOM::Element

AUTHOR

Jacques Deguest <jack@deguest.jp>

SEE ALSO

Mozilla documentation, Mozilla documentation on param element

COPYRIGHT & LICENSE

Copyright(c) 2021 DEGUEST Pte. Ltd.

All rights reserved

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.