The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Net::ICal::Property -- base class for ICalender properties

SYNOPSIS

Creating a property from a ical string: $p = Net::ICal::Property->new_from_ical ($str);

print out an ical string print $p->as_ical;

DESCRIPTION

This is the base class from which you derive specific ICal properties.

CONSTRUCTORS

new ($name, $map, %args)

You never call this directly. Instead you call the new constructor for a specific property type, which in turn calls this:

    $p = Net::ICal::Trigger (300);