====== getName ======
{#JAPI Joomla.Framework Document JDocumentPDF::getName #}
Returns the document name.
The name is returned as part of the header in the render() method.
===== Syntax =====
string getName ()
===== Examples =====
$pdfDoc =& JDocument::getInstance( 'pdf' );
$pdfDoc->setName( 'This is the document name' );
echo $pdfDoc->getName();
might produce:
This is the document name
----
~~DISCUSSION~~