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
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.