Partager via


ItemOperations.AddExistingItem, méthode

Ajoute un élément existant au projet en cours.

Espace de noms :  EnvDTE
Assembly :  EnvDTE (dans EnvDTE.dll)

Syntaxe

'Déclaration
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

Paramètres

  • FileName
    Type : System.String
    Obligatoire.Chemin d'accès complet et nom de fichier de l'élément à ajouter.

Valeur de retour

Type : EnvDTE.ProjectItem
Objet ProjectItem.

Exemples

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

Sécurité .NET Framework

Voir aussi

Référence

ItemOperations Interface

EnvDTE, espace de noms