You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#pragma once
|
|
|
|
|
|
//打印当前view 的内容
|
|
class CPrintViewMgr
|
|
{
|
|
public:
|
|
CPrintViewMgr(void);
|
|
~CPrintViewMgr(void);
|
|
CString GetPrintViewFullFilePath();
|
|
void SaveToBmpFile(HDC hDC,RECT rect);
|
|
void PrintViewToBmp(HDC hDC,RECT rect);
|
|
void PrintViewToBmpExt(CString Path,HDC hDC,RECT rect);
|
|
};
|
|
|