Class Origami::Annotation::Annotation
In: sources/parser/annotations.rb
Parent: Dictionary

Class representing an annotation. Annotations are objects which user can interact with.

Methods

Included Modules

Configurable

Public Instance methods

[Source]

     # File sources/parser/annotations.rb, line 214
214:       def set_down_appearance(apstm)
215:         self.AP ||= AppearanceStream.new
216:         self.AP[:D] = apstm
217: 
218:         self
219:       end

[Source]

     # File sources/parser/annotations.rb, line 200
200:       def set_normal_appearance(apstm)
201:         self.AP ||= AppearanceDictionary.new
202:         self.AP[:N] = apstm
203: 
204:         self
205:       end

[Source]

     # File sources/parser/annotations.rb, line 207
207:       def set_rollover_appearance(apstm)
208:         self.AP ||= AppearanceDictionary.new
209:         self.AP[:R] = apstm
210: 
211:         self
212:       end

[Validate]