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


VCFileCodeModel.AddMacro - метод

Adds a #define element to the VCFileCodeModel object.

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

Синтаксис

'Декларация
Function AddMacro ( _
    Name As String, _
    Value As String, _
    Position As Object _
) As VCCodeMacro
'Применение
Dim instance As VCFileCodeModel
Dim Name As String
Dim Value As String
Dim Position As Object
Dim returnValue As VCCodeMacro

returnValue = instance.AddMacro(Name, _
    Value, Position)
VCCodeMacro AddMacro(
    string Name,
    string Value,
    Object Position
)
VCCodeMacro^ AddMacro(
    String^ Name, 
    String^ Value, 
    Object^ Position
)
function AddMacro(
    Name : String, 
    Value : String, 
    Position : Object
) : VCCodeMacro

Параметры

  • Name
    Тип: System.String

    Required. Specifies the name (in quotes or angle brackets) of the file being included.

  • Value
    Тип: System.String

    Optional. The text of the macro's definition.

  • Position
    Тип: System.Object

    Required. Default = 0. The code element after which to add the new element. If the value is a CodeElement, then the new element is added immediately after it.

    Because collections begin their count at one, passing 0 indicates that the new element should be placed at the beginning of the collection. A value of -1 means the element should be placed at the end.

Возвращаемое значение

Тип: Microsoft.VisualStudio.VCCodeModel.VCCodeMacro

A VCCodeMacro object.

Заметки

Call this function to insert a The #define Directive element into the file represented by the VCFileCodeModel object.

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

Примеры

This example adds a macro statement to the file represented by the vcFile object.

Sub AddMacro()
    Dim vcFile as VCFileCodeModel
    vcFile = DTE.Solution.Item(1).ProjectItems.Item(1).FileCodeModel
    vcFile.AddMacro("LAST_CHAR", "'Z'", 0)
End Sub

Разрешения

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

См. также

Ссылки

VCFileCodeModel Интерфейс

VCFileCodeModel - члены

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