Method: RBPDF#SetCreator
- Defined in:
- lib/rbpdf.rb
#SetCreator(creator) ⇒ Object Also known as: set_creator
Defines the creator of the document. This is typically the name of the application that generates the PDF.
- @param string :creator
-
The name of the creator.
- @access public
- @since 1.2
- @see
-
SetAuthor(), SetKeywords(), SetSubject(), SetTitle()
1514 1515 1516 1517 |
# File 'lib/rbpdf.rb', line 1514 def SetCreator(creator) #Creator of document @creator = creator end |