IInterfaceInfo.Functions 属性

获取父对象的函数集合。

命名空间:  Microsoft.VisualStudio.VsWizard
程序集:  Microsoft.VisualStudio.VsWizard(在 Microsoft.VisualStudio.VsWizard.dll 中)

语法

声明
ReadOnly Property Functions As Object
Object Functions { get; }
property Object^ Functions {
    Object^ get ();
}
abstract Functions : Object with get
function get Functions () : Object

属性值

类型:System.Object
函数的集合父对象的。

示例

此示例检索所有全局函数的集合并显示它们的名称。

    Sub GetGlobalFunctions()
        Dim vcElement As VCCodeElement
        Dim vcElements As VCCodeElements
        vcElements = DTE.Solution.Item(1).CodeModel.Functions
        For Each vcElement In vcElements
            MsgBox(vcElement.DisplayName)
        Next
    End Sub

有关如何编译和运行此示例的信息,请参见 如何:编译 Visual C++ 代码模型扩展性的示例代码

.NET Framework 安全性

请参见

参考

IInterfaceInfo 接口

Microsoft.VisualStudio.VsWizard 命名空间