Item Property
Gets the specified InventoryQuantityDelta object from the collection, identified by position. In C#, this property is the indexer for the InventoryQuantityDeltaCollection class.
Namespace: Microsoft.CommerceServer.Inventory
Assembly: Microsoft.CommerceServer.Catalog (in Microsoft.CommerceServer.Catalog.dll)
Syntax
'Declaration
Public ReadOnly Property Item ( _
index As Integer _
) As InventoryQuantityDelta
'Usage
Dim instance As InventoryQuantityDeltaCollection
Dim index As Integer
Dim value As InventoryQuantityDelta
value = instance.Item(index)
public InventoryQuantityDelta Item[
int index
] { get; }
public:
property InventoryQuantityDelta^ Item[int index] {
InventoryQuantityDelta^ get (int index);
}
JScript does not support indexed properties.
Parameters
- index
Type: System..::.Int32
An expression that specifies the position of a member of the collection. index must be a number from 1 to the value of the collection's Count property.
Property Value
Type: Microsoft.CommerceServer.Inventory..::.InventoryQuantityDelta
A reference to a specified InventoryQuantityDelta object for the specified index from the collection.
Remarks
Returns the indexed InventoryQuantityDelta object from the InventoryQuantityDeltaCollection.
Permissions
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
InventoryQuantityDeltaCollection Class