[C#] In C#, this property is the indexer for the Data class.
[Visual Basic] Public Default Property ReadOnly LogicObjects( _ Optional ByVal ObjectKind As EpObjectKind = epObjectKindObject, _ Optional ByVal ObjectKindExact As Boolean = VARIANT_FALSE _ ) As Objects [C#] public Objects this[ EpObjectKind ObjectKind, bool ObjectKindExact ] { get; } [C++] public: __property Objects* get_LogicObjects( EpObjectKind ObjectKind, bool ObjectKindExact ); [JScript] returnValue = DataObject.Item( ObjectKind, ObjectKindExact ); -or- returnValue = DataObject( ObjectKind, ObjectKindExact );
[JScript] In JScript, you can use the default indexed properties defined by a type, but you cannot explicitly define your own. However, specifying the expando attribute on a class automatically provides a default indexed property whose type is Object and whose index type is String.
Data Class | EbsOpen Namespace