VBA中自定义COM类中的IntelliSense

时间:2016-12-15 11:05:14

标签: c# vba visual-studio com intellisense

有没有办法在VBA中自己构建的COM类中获取IntelliSense?

E.g。在下面的例子中,我想要显示“数字”,每当我按下点(或ctrl +空格的快捷方式): enter image description here

我想,如果以某种方式解决了这个问题,我还会得到一些关于这些对象的公共函数的信息:

enter image description here

因此,有什么建议?

建议1

enter image description here

1 个答案:

答案 0 :(得分:4)

简单示例可能如下所示。

  

c#类库名为IntellisenseDemo代码

using System;
using System.Runtime.InteropServices;

namespace IntellisenseDemo
{
    [ComVisible(true)]
    [Guid("41B3F5BC-A52B-4AED-90A0-F48BC8A391F1")]
    [InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
    public interface IIntellisenseDemo
    {
        int Number { get; set; }
        string TestString(string name);
    }

    [ComVisible(true)]
    [Guid("20EBC3AF-22C6-47CE-B70C-7EBBA12D0A29")]
    [ClassInterface(ClassInterfaceType.None)]
    [ProgId("IntellisenseDemo.Demo")]
    public class Demo : IIntellisenseDemo
    {
        public int Number { get; set; }
        public string TestString(string name)
        {
            throw new NotImplementedException();
        }
    }
}

注意[InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]表示接口作为调度接口向COM公开,只启用后期绑定。

[ClassInterface(ClassInterfaceType.None)]表示CLR不公开此类型的类接口。 COM客户端可以使用IIntellisenseDemo接口中的方法调用此类的成员。

  

regasm

C:\Windows\Microsoft.NET\Framework\v4.0.30319>regasm C:\Temp\IntellisenseDemo.dll /tlb: C:\Temp\IntellisenseDemo.tlb
  

VBA

enter image description here

enter image description here

enter image description here