Partager via


Document.FullName, propriété

Obtient le chemin d'accès complet et le nom du fichier de l'objet.

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

Syntaxe

'Déclaration
ReadOnly Property FullName As String
string FullName { get; }
property String^ FullName {
    String^ get ();
}
abstract FullName : string
function get FullName () : String

Valeur de propriété

Type : System.String
Chaîne représentant le chemin d'accès complet et le nom du fichier de l'objet.

Notes

La propriété FullName est appelée FileName dans certaines versions de Visual Studio.

Exemples

Sub FullNameExample(ByVal dte As DTE2)

    dte.ItemOperations.NewFile()

    Dim doc As Document = dte.ActiveDocument

    ' Display the new document's temporary location.
    MsgBox(doc.ActiveWindow.Caption & " is stored at " & doc.FullName)

End Sub
public void FullNameExample(DTE2 dte)
{
    dte.ItemOperations.NewFile(@"General\Text File", "", 
        Constants.vsViewKindPrimary);

    Document doc = dte.ActiveDocument;

    // Display the new document's temporary location.
    MessageBox.Show(doc.ActiveWindow.Caption + " is stored at " + 
        doc.FullName);
}

Sécurité .NET Framework

Voir aussi

Référence

Document Interface

EnvDTE, espace de noms