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




id
Identifier of the item that is modified.
Gets or sets the element with the specified Identifier.

Syntax

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

Parameters

id
Identifier of the item that is modified.

Return Value

The DynamicProperty with the given id.

Requirements

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

See Also