Compartilhar via


Método ItemOperations.AddExistingItem

Adiciona um item existente ao projeto atual.

Namespace:  EnvDTE
Assembly:  EnvDTE (em EnvDTE.dll)

Sintaxe

'Declaração
Function AddExistingItem ( _
    FileName As String _
) As ProjectItem
ProjectItem AddExistingItem(
    string FileName
)
ProjectItem^ AddExistingItem(
    [InAttribute] String^ FileName
)
abstract AddExistingItem : 
        FileName:string -> ProjectItem
function AddExistingItem(
    FileName : String
) : ProjectItem

Parâmetros

  • FileName
    Tipo: String

    Obrigatório. O nome de arquivo e caminho completo do item a ser adicionado.

Valor de retorno

Tipo: EnvDTE.ProjectItem
A ProjectItem object.

Exemplos

Sub AddExistingItemExample()
   Dim ItemOp As ItemOperations
   ItemOp = DTE.ItemOperations
   ' Add a log file to the project.
   ItemOp.AddExistingItem("d:\windows\ocgen.log")
End Sub

Segurança do .NET Framework

Consulte também

Referência

ItemOperations Interface

Namespace EnvDTE