User |
Scroll |
The User object contains information about the current Thereforeā¢ user.
The vUser Object (Array):
Position |
Type |
Value |
0 |
Integer |
Thereforeā¢ User Number |
1 |
String |
Username (Domain\Username) |
2 |
String |
Group Number List (List of Thereforeā¢ Groups the User is member of) |
C# Sample (accessing the vUser Object)
object[] oaUser = (object[])vUser;
int nUserNo = (Int32)oaUser[0];
string strUsername = (string)oaUser[1];
string strGroupNoList = (string)oaUser[2];