Sdílet prostřednictvím


User2.UserName-Eigenschaft

Ruft nur den Benutzernamen des Benutzers ab.

Namespace: Microsoft.Office.Interop.InfoPath
Assembly: Microsoft.Office.Interop.InfoPath (in microsoft.office.interop.infopath.dll)

Syntax

'Declaration
<DispIdAttribute(4)> _
ReadOnly Property UserName As String
'Usage
Dim instance As User2
Dim value As String

value = instance.UserName
[DispIdAttribute(4)] 
string UserName { get; }

Eigenschaftswert

Der Benutzername des Benutzers.

Hinweise

Das Aufrufen der UserName-Eigenschaft entspricht dem Aufrufen von System.Environment.UserName.

Beispiel

In the following example, the UserName property is used to display the current user's login credentials.

User2 thisUser = thisApplication.User;
thisXDocument.UI.Alert(thisUser.UserName);
Dim thisUser As User2  = thisApplication.User
thisXDocument.UI.Alert(thisUser.UserName)

Siehe auch

Referenz

User2-Schnittstelle
User2-Member
Microsoft.Office.Interop.InfoPath-Namespace