class PdflibMini::Handle::Textflow
Constants
- INFO_KEYWORD
Public Class Methods
new(textflow, p)
click to toggle source
Calls superclass method
# File lib/pdflib_mini/handle/textflow.rb, line 12 def initialize(textflow, p) super(textflow) @p = p end
Public Instance Methods
add_textflow(*args)
click to toggle source
5.2 Multi-Line Text with Textflows int add_textflow
(int textflow, string text, string optlist)
# File lib/pdflib_mini/handle/textflow.rb, line 19 def add_textflow(*args) @p.add_textflow(self, *args) end
delete_textflow()
click to toggle source
5.2 Multi-Line Text with Textflow
delete_textflow
(int textflow)
# File lib/pdflib_mini/handle/textflow.rb, line 37 def delete_textflow @p.delete_textflow(self) end
fit_textflow(*args)
click to toggle source
5.2 Multi-Line Text with Textflows string fit_textflow
(int textflow, float llx, float lly, float urx, float ury, string optlist)
# File lib/pdflib_mini/handle/textflow.rb, line 25 def fit_textflow(*args) @p.fit_textflow(self, *args) end
info_textflow(keyword, _)
click to toggle source
5.2 Multi-Line Text with Textflows float info_textflow
(int textflow, string keyword)
# File lib/pdflib_mini/handle/textflow.rb, line 31 def info_textflow(keyword, _) @p.info_textflow(self, keyword) end