Compartilhar via


Propriedade Document.FullName

Obtém o caminho completo e o nome do arquivo do objeto.

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

Sintaxe

'Declaração
ReadOnly Property FullName As String
string FullName { get; }
property String^ FullName {
    String^ get ();
}
abstract FullName : string with get
function get FullName () : String

Valor de propriedade

Tipo: String
Uma seqüência de caracteres que representa o caminho completo e o nome do arquivo do objeto.

Comentários

O FullName propriedade é conhecida como o FileName propriedade em algumas versões do Visual Studio.

Exemplos

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);
}

Segurança do .NET Framework

Consulte também

Referência

Document Interface

Namespace EnvDTE