FaxFields Object
The FaxFields collection object contains one or more
FaxField
objects and defines the fields of a
FaxPhonebookEntry object.
Properties
Methods
|
Name |
Input Parameters |
Return Values |
|
Add |
FieldID as Long,
(Optional) Value as Variable |
FaxField object |
|
Remove |
Index as Long |
|
|
RemoveAll
|
(None) |
|
Remarks
Use the Item property to reference a particular
FaxField
object.
Back to Top
Add Method
The Add method creates and returns a new
FaxField
object in the FaxFields collection. The Add method also
creates server based resources associated with the new
field.
Syntax
ObjFields.Add(FieldID)
where FieldID is the identifier of the field to be added.
Back to Top
Count Property
The Count property returns the number of
FaxField
objects contained in the collection. Read-only.
Syntax
ObjFields.Count
Data Type
Long
Back to Top
Item Property
The Item property returns a single
FaxField
object from the collection. Read-only.
Syntax
ObjFields.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
FaxField object
Remarks
The Item property is the default property of the
FaxFields object.
Back to Top
Remove Method
The Remove method deletes the
FaxField
object with the specified index from the collection. Server
based resources associated with the field are also deleted.
Syntax
ObjFields.Remove(Index)
where Index is a long integer ranging from 1 to the size
of the collection (i.e., value of Count property).
Back to Top
RemoveAll Method
The RemoveAll method deletes all
FaxField
objects from the collection. Server-based resources
associated with the fields are also deleted.
Syntax
ObjFields.RemoveAll
Back to Top
Value Property
The Value property returns or sets the value of the
specified field. Read/write.
Syntax
ObjFields.Value (FieldID)
Data Type
(variable)
Back to Top
|