CStatic::GetEnhMetaFile
SetEnhMetafile 関数により以前に設定され、CStatic に関連付けられた拡張メタファイルのハンドルを取得します。
HENHMETAFILE GetEnhMetaFile( ) const;
戻り値
正常終了した場合は現在の拡張メタファイルへのハンドルを返します。拡張メタファイルが設定されていない場合は、NULL を返します。
使用例
CStatic myStatic;
// Create a child enhanced metafile static control.
myStatic.Create(_T("my static"),
WS_CHILD|WS_VISIBLE|SS_ENHMETAFILE|SS_CENTERIMAGE,
CRect(10,10,150,50), pParentWnd);
// If no image is defined for the static control, define the image
// to be "myemf.emf."
if (myStatic.GetEnhMetaFile() == NULL)
myStatic.SetEnhMetaFile(::GetEnhMetaFile(_T("myemf.emf")));
必要条件
**ヘッダー:**afxwin.h