PDFPAGE_PlayMetaFile
IPDFDocument3 :: PDF page methods

See Also Example
Collapse All

This method adds a metafile to a PDF document.

Syntax

HRESULT PDFPAGE_PlayMetaFile (
LONG metafileHandle
)
Parameters
metafileHandle
Handle of the metafile to be painted.

Return value
If successful, this method returns S_OK. If it fails, this method should return one of the error values.

Remarks

This method paints the context of the metafile provided by the handle on the page.

Equivalent in new interface: IPDFDocument4::PlayMetaFileFromHandle.

Example

Playing (Painting) a Metafile

Delphi
[copy to clipboard]
{ PDF object is supposed to be created }
PDF.BeginDoc;
HENHMETAFILE hMetafile := GetEnhMetaFile('page.emf');
PDF.PDFPAGE_PlayMetaFile(hMetafile);
PDF.EndDoc;
C/C++
[copy to clipboard]
// PDF object is supposed to be created
PDF->BeginDoc();
HENHMETAFILE hMetafile = GetEnhMetaFile("page.emf");
PDF->PDFPAGE_PlayMetaFile(hMetafile);
PDF->EndDoc();
C#
[copy to clipboard]
// PDF object is supposed to be created
PDF.BeginDoc();
HENHMETAFILE hMetafile = GetEnhMetaFile("page.emf");
PDF.PDFPAGE_PlayMetaFile(hMetafile);
PDF.EndDoc();
Visual Basic
[copy to clipboard]
' PDF object is supposed to be created
PDF.BeginDoc
HENHMETAFILE hMetafile = GetEnhMetaFile("page.emf")
PDF.PDFPAGE_PlayMetaFile hMetafile
PDF.EndDoc

See Also

Reference