| PdfDocumentGetMetaText Method |
Get a text from metadata of the document.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.89.2704
Syntax public string GetMetaText(
string tag
)
Public Function GetMetaText (
tag As String
) As String
public:
String^ GetMetaText(
String^ tag
)
member GetMetaText :
tag : string -> string
public String GetMetaText(
String tag
)
function GetMetaText(tag);
Parameters
- tag String
- The tag for the meta data. Currently, It can be "Title", "Author", "Subject",
"Keywords", "Creator", "Producer", "CreationDate", or "ModDate". For
detailed explanation of these tags and their respective values, please refer
to PDF Reference 1.6, section 10.2.1, "Document Information Dictionary".
Return Value
StringThe text from metadata of the document.
See Also