Chili.Opf3 Send comments on this topic.
Item Property
See Also 
Chili.Opf3 Namespace > IPopulateHelper Interface : Item Property




propertyName
Name of the property that's data is retrieved or that is populated with data from the storage.
Indexer used to populate the persistent object. For additional information of how to implement the interface look at the IPopulateHelper class definition.

Syntax

Visual Basic (Declaration) 
Overridable Default Property Item( _
   ByVal propertyName As String _
) As Object
Visual Basic (Usage)Copy Code
Dim instance As IPopulateHelper
Dim propertyName As String
Dim value As Object
 
instance.Item(propertyName) = value
 
value = instance.Item(propertyName)
C# 
virtual object this[ 
   string propertyName
]; {get; set;}
Managed Extensions for C++ 
__property virtual Object* get_Item( 
   string* propertyName
);
__property virtual void set_Item( 
   string* propertyName,
   Object* value
);
C++/CLI 
virtual property Object^ default [String^] {
   Object^ get(String^ propertyName);
   void set (String^ propertyName, Object^ value);
}

Parameters

propertyName
Name of the property that's data is retrieved or that is populated with data from the storage.

Return Value

Returns the value of the requested property.

Requirements

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

See Also