FaxUsers Collection Object
The FaxUsers collection object can contain zero or more
FaxUser
objects.
Properties
Methods
|
Name |
Input Parameters |
Return Values |
|
Add |
UserName as String, (Optional)
Password as String,
(Optional) DisplayName as String |
FaxUser object |
|
Remove |
Index as Long |
|
|
RemoveAll
|
(None) |
|
Back to Top
Add Method
The Add method creates and returns a new
FaxFolder object in the FaxFolders collection. The Add
method also creates server based resources associated with
the folder.
Syntax
ObjUsers.Add(UserName)
Remarks
Optional input parameters include the user's Password
(string) and the user's DisplayName (string).
Back to Top
Count Property
The Count property returns the number of
FaxUser
objects contained in the collection. Read-only.
Syntax
ObjUsers.Count
Data Type
Long
Back to Top
Item Property
The Item property returns a single
FaxUser
object from the collection. Read-only.
Syntax
ObjUsers.Item(Index)
where Index is a long integer ranging from 1 to the size
of the collection (i.e., value of Count property).
Data Type
FaxUser object
Remarks
The Item property is the default property of the FaxUsers
collection object.
Use the Item property to reference a particular FaxUser
object.
Back to Top
Remove Method
The Remove method deletes the
FaxUser
object with the specified index from the collection. Server
based resources associated with the user are also deleted.
Syntax
ObjUsers.Remove(Index)
where Index is a long integer ranging from 1 to the size
of the collection (i.e., value of Count property).
Remarks
Remove will fail with an invalid argument error if this
user is the default administrator user account shipped with
Facsys.
Back to Top
RemoveAll Method
The RemoveAll method deletes all
FaxUser
objects from the collection. Server-based resources
associated with the users are also deleted.
Syntax
ObjUsers.RemoveAll
Remarks
The RemoveAll method will not delete the default
administrator account shipped with Facsys. This operation is
permanent - it cannot be undone.
Back to Top
|