VCCodeFunction.IsInline 属性

获取或设置函数对象的内联属性。

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

语法

声明
Property IsInline As Boolean
bool IsInline { get; set; }
property bool IsInline {
    bool get ();
    void set (bool value);
}
abstract IsInline : bool with get, set
function get IsInline () : boolean
function set IsInline (value : boolean)

属性值

类型:System.Boolean
如果该函数定义为内联,则为 true;否则为 false。

备注

调用 IsInline 确定现有功能是否定义,内联函数或定义现有功能为内联。

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

示例

此示例演示每个内联函数的名称。

Sub GetInlineFunctions()
    Dim vcCM as VCCodeModel
    Dim vcFunc as VCCodeFunction
    vcCM = DTE.Solution.Item(1).CodeModel
    For Each vcFunc in vcCM.Functions
        If (vcFunc.IsInline()) Then
            MsgBox(vcFunc.DisplayName + "is an inline function")
        End If
    Next
End Sub

.NET Framework 安全性

请参见

参考

VCCodeFunction 接口

Microsoft.VisualStudio.VCCodeModel 命名空间