EbsOpen Class Library for EBSILON®Professional

Data.LogicObjects Property

[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( ObjectKindObjectKindExact );
-or-
returnValue = DataObject( ObjectKindObjectKindExact );

[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.

See Also

Data Class | EbsOpen Namespace