Class | Origami::Annotation::Annotation |
In: |
sources/parser/annotations.rb
|
Parent: | Dictionary |
Class representing an annotation. Annotations are objects which user can interact with.
# 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
# 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