Compartir a través de


Document.FullName (Propiedad)

Obtiene la ruta de acceso completa y el nombre de archivo del objeto.

Espacio de nombres:  EnvDTE
Ensamblado:  EnvDTE (en EnvDTE.dll)

Sintaxis

'Declaración
ReadOnly Property FullName As String
    Get
string FullName { get; }
property String^ FullName {
    String^ get ();
}
abstract FullName : string
function get FullName () : String

Valor de propiedad

Tipo: System.String
Una cadena que representa la ruta de acceso completa y el nombre del archivo del objeto.

Comentarios

La propiedad FullName se denomina FileName en algunas versiones de Visual Studio.

Ejemplos

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

Seguridad de .NET Framework

Vea también

Referencia

Document Interfaz

EnvDTE (Espacio de nombres)