Syntax 
 | |
|---|---|
Description 
 | The Item property is used to return a specific member of the Parameters Collection. The Index parameter is the position (ordinal) number. 
 | 
See Also 
 | |
Example 
 | MyParameter = objCommand.Parameters.Item(5)  
'Or:  
MyParameter = objCommand.Parameters(5) 
 |