vclabel.h

来自「this the code of bootstation」· C头文件 代码 · 共 41 行

H
41
字号
// Mit Microsoft Visual C++ automatisch erstellte IDispatch-Kapselungsklasse(n). 

// HINWEIS: Die Inhalte dieser Datei nicht 鋘dern. Wenn Microsoft Visual C++
// diese Klasse erneuert, werden Ihre 膎derungen 黚erschrieben.


// Dispatch-Schnittstellen, auf die von dieser Schnittstelle verwiesen wird
class CVcBackdrop;
class CVcFont;
class CVcTextLayout;
class COleFont;

/////////////////////////////////////////////////////////////////////////////
// Wrapper-Klasse CVcLabel 

class CVcLabel : public COleDispatchDriver
{
public:
	CVcLabel() {}		// Ruft den Standardkonstruktor f黵 COleDispatchDriver auf
	CVcLabel(LPDISPATCH pDispatch) : COleDispatchDriver(pDispatch) {}
	CVcLabel(const CVcLabel& dispatchSrc) : COleDispatchDriver(dispatchSrc) {}

// Attribute
public:

// Operationen
public:
	CVcBackdrop GetBackdrop();
	CString GetFormat();
	void SetFormat(LPCTSTR lpszNewValue);
	CVcFont GetVtFont();
	BOOL GetAuto();
	void SetAuto(BOOL bNewValue);
	BOOL GetStanding();
	void SetStanding(BOOL bNewValue);
	CVcTextLayout GetTextLayout();
	short GetFormatLength();
	void SetRefFont(LPDISPATCH newValue);
	COleFont GetFont();
};

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?