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


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);
 Net::ICal::Property -- base class for ICalender properties