Method: Pdfcrowd::HtmlToPdfClient#setMarginRight
- Defined in:
- lib/pdfcrowd.rb
#setMarginRight(right) ⇒ Object
993 994 995 996 997 998 999 1000 |
# File 'lib/pdfcrowd.rb', line 993 def setMarginRight(right) unless /(?i)^0$|^[0-9]*\.?[0-9]+(pt|px|mm|cm|in)$/.match(right) raise Error.new(Pdfcrowd.(right, "setMarginRight", "html-to-pdf", "The value must be specified in inches 'in', millimeters 'mm', centimeters 'cm', pixels 'px', or points 'pt'.", "set_margin_right"), 470); end @fields['margin_right'] = right self end |