Document.FullName Eigenschaft
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Ruft den vollständigen Pfad und Namen der Objektdatei ab.
public:
property System::String ^ FullName { System::String ^ get(); };
public:
property Platform::String ^ FullName { Platform::String ^ get(); };
[System.Runtime.InteropServices.DispId(103)]
public string FullName { [System.Runtime.InteropServices.DispId(103)] get; }
[<System.Runtime.InteropServices.DispId(103)>]
[<get: System.Runtime.InteropServices.DispId(103)>]
member this.FullName : string
Public ReadOnly Property FullName As String
Eigenschaftswert
Eine Zeichenfolge, die den vollständigen Pfad und Namen der Objektdatei darstellt.
- Attribute
Beispiele
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);
}
Hinweise
Die- FullName Eigenschaft wird FileName in einigen Versionen von Visual Studio als-Eigenschaft bezeichnet.