Поделиться через


VCCodeFunction.IsInline - свойство

Gets or sets the inline property of the function object.

Пространство имен:  Microsoft.VisualStudio.VCCodeModel
Сборка:  Microsoft.VisualStudio.VCCodeModel (в Microsoft.VisualStudio.VCCodeModel.dll)

Синтаксис

'Декларация
Property IsInline As Boolean
'Применение
Dim instance As VCCodeFunction
Dim value As Boolean

value = instance.IsInline

instance.IsInline = value
bool IsInline { get; set; }
property bool IsInline {
    bool get ();
    void set (bool value);
}
function get IsInline () : boolean
function set IsInline (value : boolean)

Значение свойства

Тип: System.Boolean

true if the function is defined as inline; otherwise, false.

Заметки

Call IsInline to determine if an existing function is defined as an inline function or to define an existing function as inline.

See How to: Compile Example Code for Visual C++ Code Model Extensibility for information on how to compile and run this sample.

Примеры

This example displays the name of each inline function.

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

Разрешения

  • Полное доверие для непосредственно вызывающего метода. Этот член не может быть использован частично доверенным кодом. Дополнительные сведения см. в разделе Using Libraries from Partially Trusted Code.

См. также

Ссылки

VCCodeFunction Интерфейс

VCCodeFunction - члены

Microsoft.VisualStudio.VCCodeModel - пространство имен