Method: Pdfcrowd::HtmlToPdfClient#setViewportWidth
- Defined in:
- lib/pdfcrowd.rb
#setViewportWidth(width) ⇒ Object
1511 1512 1513 1514 1515 1516 1517 1518 |
# File 'lib/pdfcrowd.rb', line 1511 def setViewportWidth(width) if (!(Integer(width) >= 96 && Integer(width) <= 65000)) raise Error.new(Pdfcrowd.(width, "setViewportWidth", "html-to-pdf", "The accepted range is 96-65000.", "set_viewport_width"), 470); end @fields['viewport_width'] = width self end |