vcpen.h

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

H
37
字号
// 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 CVcColor;

/////////////////////////////////////////////////////////////////////////////
// Wrapper-Klasse CVcPen 

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

// Attribute
public:

// Operationen
public:
	long GetStyle();
	void SetStyle(long nNewValue);
	long GetJoin();
	void SetJoin(long nNewValue);
	long GetCap();
	void SetCap(long nNewValue);
	CVcColor GetVtColor();
	float GetWidth();
	void SetWidth(float newValue);
	float GetLimit();
	void SetLimit(float newValue);
};

⌨️ 快捷键说明

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