⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 axatledit.idl

📁 vc++ acticex原代码
💻 IDL
字号:
// AxAtlEdit.idl : IDL source for AxAtlEdit.dll
//

// This file will be processed by the MIDL tool to
// produce the type library (AxAtlEdit.tlb) and marshalling code.

import "oaidl.idl";
import "ocidl.idl";
#include "olectl.h"
	

	[
		object,
		uuid(2799C2DF-75AC-11D4-A54D-0050BADB14A3),
		dual,
		helpstring("IAtlEdit Interface"),
		pointer_default(unique)
	]
	interface IAtlEdit : IDispatch
	{
		[propput, id(DISPID_BACKCOLOR)]
		HRESULT BackColor([in]OLE_COLOR clr);
		[propget, id(DISPID_BACKCOLOR)]
		HRESULT BackColor([out,retval]OLE_COLOR* pclr);
		[propputref, id(DISPID_FONT)]
		HRESULT Font([in]IFontDisp* pFont);
		[propput, id(DISPID_FONT)]
		HRESULT Font([in]IFontDisp* pFont);
		[propget, id(DISPID_FONT)]
		HRESULT Font([out, retval]IFontDisp** ppFont);
		[propput, id(DISPID_FORECOLOR)]
		HRESULT ForeColor([in]OLE_COLOR clr);
		[propget, id(DISPID_FORECOLOR)]
		HRESULT ForeColor([out,retval]OLE_COLOR* pclr);
	};

[
	uuid(2799C2D2-75AC-11D4-A54D-0050BADB14A3),
	version(1.0),
	helpstring("AxAtlEdit 1.0 Type Library")
]
library AXATLEDITLib
{
	importlib("stdole32.tlb");
	importlib("stdole2.tlb");

	[
		uuid(2799C2E1-75AC-11D4-A54D-0050BADB14A3),
		helpstring("_IAtlEditEvents Interface")
	]
	dispinterface _IAtlEditEvents
	{
		properties:
		methods:
	};

	[
		uuid(2799C2E0-75AC-11D4-A54D-0050BADB14A3),
		helpstring("AtlEdit Class")
	]
	coclass AtlEdit
	{
		[default] interface IAtlEdit;
		[default, source] dispinterface _IAtlEditEvents;
	};
};

⌨️ 快捷键说明

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