vclocation.h

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

H
31
字号
// 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 CVcRect;

/////////////////////////////////////////////////////////////////////////////
// Wrapper-Klasse CVcLocation 

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

// Attribute
public:

// Operationen
public:
	CVcRect GetRect();
	BOOL GetVisible();
	void SetVisible(BOOL bNewValue);
	long GetLocationType();
	void SetLocationType(long nNewValue);
};

⌨️ 快捷键说明

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