class Origami::Annotation
Class representing an annotation. Annotations are objects which user can interact with.
Public Instance Methods
set_down_appearance(apstm)
click to toggle source
# File lib/origami/annotations.rb, line 99 def set_down_appearance(apstm) self.AP ||= AppearanceStream.new self.AP[:D] = apstm self end
set_normal_appearance(apstm)
click to toggle source
# File lib/origami/annotations.rb, line 85 def set_normal_appearance(apstm) self.AP ||= AppearanceDictionary.new self.AP[:N] = apstm self end
set_rollover_appearance(apstm)
click to toggle source
# File lib/origami/annotations.rb, line 92 def set_rollover_appearance(apstm) self.AP ||= AppearanceDictionary.new self.AP[:R] = apstm self end