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)
|
| Managed Extensions for C++ | |
|---|
__property virtual Object* get_Item(
string* propertyName
);
__property virtual void set_Item(
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