Partager via


VCFile.RelativePath, propriété

Obtient ou définit le chemin d'accès relatif au fichier. Ce chemin d'accès doit être relatif au répertoire de projet et peut contenir des macros.

Espace de noms :  Microsoft.VisualStudio.VCProjectEngine
Assembly :  Microsoft.VisualStudio.VCProjectEngine (dans Microsoft.VisualStudio.VCProjectEngine.dll)

Syntaxe

'Déclaration
Property RelativePath As String
string RelativePath { get; set; }
property String^ RelativePath {
    String^ get ();
    void set (String^ value);
}
abstract RelativePath : string with get, set
function get RelativePath () : String 
function set RelativePath (value : String)

Valeur de propriété

Type : String
Chemin d'accès relatif au fichier.

Notes

Toute tentative de définir le chemin d'accès relatif d'un fichier doit avoir un chemin d'accès conforme à la propriété d'FullPath. Consultez Comment : compiler l'exemple de code pour l'extensibilité du modèle de projet pour savoir comment compiler et exécuter cet exemple.

Exemples

L'exemple suivant utilise la propriété d'RelativePath dans l'environnement de développement intégré (IDE) :

' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine

Public Module Module1
    Sub Test()
        Dim file As VCFile
        Dim col As IVCCollection
        Dim idx As Integer
        Dim prj As VCProject
        prj = DTE.Solution.Projects.Item(1).Object
        col = prj.Files
        For idx = 1 To col.Count
            file = col.Item(idx)
            MsgBox(file.RelativePath)
        Next
    End Sub
End Module

Sécurité .NET Framework

Voir aussi

Référence

VCFile Interface

Microsoft.VisualStudio.VCProjectEngine, espace de noms