Perl::Dist::WiX::PropertyList - A list of and tags.


Perl-Dist-WiX documentation  | view source Contained in the Perl-Dist-WiX distribution.

Index


NAME

Top

Perl::Dist::WiX::PropertyList - A list of <Property> and <WixVariable> tags.

VERSION

Top

This document describes Perl::Dist::WiX::PropertyList version 1.500.

SYNOPSIS

Top

	# Create an icon array
	my $list = Perl::Dist::WiX::PropertyList->new();

	# Add an property to the list, then go looking for it.
	my $property_tag = $list->add_simple_property('ARPNOMODIFY', '1');

	# Print out all the icons in XML format.
	my $xml = $list->as_string();

DESCRIPTION

Top

TODO

The object is not a singleton - maybe it should be?

INTERFACE

Top

new

	my $list = Perl::Dist::WiX::PropertyList->new();

Creates a new Perl::Dist::WiX::PropertyList object.

Takes no parameters.

add_simple_property

	my $property_tag = $list->add_simple_property('ARPNOMODIFY', '1');

The add_simple_property routine adds a property to the list identified by the first parameter, with its value being the second parameter.

URI values are stringified.

add_wixvariable

TODO

as_string

	my $xml = $list->as_string();

The as_string method returns XML code for all properties included in this object.

get_namespace

TODO

DIAGNOSTICS

Top

See Perl::Dist::WiX::Diagnostics (Perl::Dist::WiX::Diagnostics) for a list of exceptions that this module can throw.

BUGS AND LIMITATIONS (SUPPORT)

Top

Bugs should be reported via:

1) The CPAN bug tracker at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Perl-Dist-WiX if you have an account there.

2) Email to <bug-Perl-Dist-WiX@rt.cpan.org> if you do not.

For other issues, contact the topmost author.

AUTHORS

Top

Curtis Jewell <csjewell@cpan.org>

Adam Kennedy <adamk@cpan.org>

SEE ALSO

Top

Perl::Dist::WiX, http://ali.as/, http://csjewell.comyr.com/perl/

COPYRIGHT AND LICENSE

Top


Perl-Dist-WiX documentation  | view source Contained in the Perl-Dist-WiX distribution.