| Net::ICal::Event -- Event class |
Net::ICal::Event -- Event class
use Net::ICal::Event;
my $e = new Net::ICal::Event (
organizer => new Net::ICal::Attendee('alice'),
uid => 'fooid',
alarms => [Net::ICal::Event objects],
dtstart => new Net::ICal::Time("20010207T160000Z"),
summary => 'tea with the white rabbit',
);
Net::ICal::Event represents iCalendar events.
new($args)Construct a new Event. Parameters are in a hash. Meaningful parameters are:
More documentation pointers can be found in the Net::ICal manpage.
| Net::ICal::Event -- Event class |