Method: TCPDF#setPageMark
- Defined in:
- lib/tcpdf.rb
#setPageMark ⇒ Object Also known as: set_page_mark
Set start-writing mark on current page stream used to put borders and fills. Borders and fills are always created after content and inserted on the position marked by this method. This function must be called after calling Image() function for a background image. Background images must be always inserted before calling Multicell() or WriteHTMLCell() or WriteHTML() functions.
- @access public
- @since 4.0.016 (2008-07-30)
1738 1739 1740 1741 |
# File 'lib/tcpdf.rb', line 1738 def setPageMark() @intmrk[@page] = @pagelen[@page] setContentMark() end |