Discuss this help topic in SecureBlackbox Forum

TElBoxUsers.Add

TElBoxUsers     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Adds a new item to the list.

Declaration

[C#]
    TElBoxUser Add(string Login, string Name);

[VB.NET]
    Function Add(ByVal Login As String, ByVal Name As String) As TElBoxUser

[Pascal]
    function Add(const Login, Name: string): TElBoxUser;

[C++]
    TElBoxUserHandle Add(const std::string &Login, const std::string &Name);

[PHP]
    TElBoxUser Add(string $Login, string $Name)

[Java]
    TElBoxUser add(String Login, String Name);

Parameters

  • Login - email address of the user.
  • Name - user's name.

Return value

    Returns a reference to the newly created user object that has been added to the list.

Description

    Use this method to add a new user to the list.

See also:     Clear     IndexOf     Items    

Discuss this help topic in SecureBlackbox Forum