Class Icalendar::Alarm
In: lib/icalendar/component/alarm.rb
Parent: Component

An Alarm calendar component is a grouping of component properties that is a reminder or alarm for an event or a to-do. For example, it may be used to define a reminder for a pending Event or an overdue Todo.

Methods

new  

Attributes

action    Single properties
created    Single and only occurring once
description   
duration    Single but must appear together
last_modified   
repeat   
sequence   
summary   
timestamp   
trigger   

Public Class methods

[Source]

# File lib/icalendar/component/alarm.rb, line 36
    def initialize()
      super("VALARM")
      
      # Almost everyone just wants to display so I make it the 
      # default so it works for most people right away...
      action "DISPLAY"
    end

[Validate]