 | PdfiumFPDF_GetMetaText(IntPtr, DocumentTags) Method |
Get meta-data tag content from document.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static string FPDF_GetMetaText(
IntPtr document,
DocumentTags tag
)
Public Shared Function FPDF_GetMetaText (
document As IntPtr,
tag As DocumentTags
) As String
public:
static String^ FPDF_GetMetaText(
IntPtr document,
DocumentTags tag
)
static member FPDF_GetMetaText :
document : IntPtr *
tag : DocumentTags -> string
public static String FPDF_GetMetaText(
IntPtr document,
DocumentTags tag
)
Patagames.Pdf.Pdfium.FPDF_GetMetaText = function(document, tag);
Parameters
- document IntPtr
- Handle to the document. Returned by FPDF_LoadDocument(String, String), FPDF_LoadMemDocument(Byte, Int32, String) or FPDF_LoadCustomDocument(FPDF_FILEACCESS, String) functions.
- tag DocumentTags
- The tag to retrieve.
Return Value
StringThe meta-data tag content.
Remarks
Currently, The tag can be one of "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".
See Also