1.4 Parameters Collection

Contains all the Parameter objects of a Command object.

1.4.1 Count property

Indicates the number of objects in a collection.

Syntax

object.Count

Type

Long.

Attributes

Read-only.

1.4.2 Append method

Appends a Parameter object to the Parameters collection.

Syntax

object.Append(
   Object As Object)

Parameters

Object

The Parameter object to be appended.

Return Values

Parameter.

1.4.3 Delete method

Deletes a Parameter object from the Parameters collection.

Syntax

object.Delete(
   Index As Variant)

Parameters

Index

Either the name of the Parameter object you want to delete, or the object's ordinal position (index) in the collection.

Return Values

None.

1.4.4 Item method

Returns a specific member of the Parameters collection by name or ordinal number.

Syntax

object.Item(
 Index As Variant)

Parameters

Index

Either the name of the Parameter object you want to retrieve or the object’s ordinal position (index) in the collection.

Return Values

Parameter. Returns a reference to a Parameter object.