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


VCCodeStruct.AddBase - метод

Adds an item to the list of inherited objects.

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

Синтаксис

'Декларация
Function AddBase ( _
    Base As Object, _
    Position As Object _
) As CodeElement
'Применение
Dim instance As VCCodeStruct
Dim Base As Object
Dim Position As Object
Dim returnValue As CodeElement

returnValue = instance.AddBase(Base, Position)
CodeElement AddBase(
    Object Base,
    Object Position
)
CodeElement^ AddBase(
    Object^ Base, 
    Object^ Position
)
function AddBase(
    Base : Object, 
    Position : Object
) : CodeElement

Параметры

  • Base
    Тип: System.Object

    Required. The class from which to derive implementation.

  • Position
    Тип: System.Object

    Optional. 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.

    If the value is a Long data type, then AddBase indicates the element after which to add the new element.

    Because collections begin their count at 1, 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.

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

Тип: EnvDTE.CodeElement

A CodeElement object.

Заметки

The correctness of the arguments is determined by the language behind the code model. AddBase fails for Visual J# classes if there is already a declared base class. You must first remove the existing one with CodeType.RemoveBase.

AddBase returns a CodeElement object rather than a CodeType to accommodate Visual C++, and the Kind of the returned object is vsCMElementVCBase for the implementation of Visual C++.

Разрешения

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

См. также

Основные понятия

How to: Compile and Run the Automation Object Model Code Examples

Ссылки

VCCodeStruct Интерфейс

VCCodeStruct - члены

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