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 65 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 51 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 58 def set_rollover_appearance(apstm) self.AP ||= AppearanceDictionary.new self.AP[:R] = apstm self end