Chili.Opf3 Send comments on this topic.
Item(Int32) Property
See Also 
Chili.Opf3.DynamicProperties Namespace > DynamicPropertiesCollection Class > Item Property : Item(Int32) Property




index
Index of the item that is modified.
Gets or sets the element at the specified index.

Syntax

Visual Basic (Declaration) 
Overloads Public Property Item( _
   ByVal index As Integer _
) As DynamicProperty
Visual Basic (Usage)Copy Code
Dim instance As DynamicPropertiesCollection
Dim index As Integer
Dim value As DynamicProperty
 
instance.Item(index) = value
 
value = instance.Item(index)
C# 
public DynamicProperty Item( 
   int index
) {get; set;}
Managed Extensions for C++ 
public: __property DynamicProperty* get_Item( 
   int index
);
public: __property void set_Item( 
   int index,
   DynamicProperty* value
);
C++/CLI 
public:
property DynamicProperty^ Item {
   DynamicProperty^ get(int index);
   void set (int indexDynamicProperty^ value);
}

Parameters

index
Index of the item that is modified.

Exceptions

ExceptionDescription
ArgumentOutOfRangeExceptionIndex is not a valid index in the DynamicPropertiesCollection.

Requirements

Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family

See Also