[C#] In C#, this property is the indexer for the ApplicationTooltips class.
[Visual Basic] Public Default Property ReadOnly PossibleEntries( _ ByVal Kind As EpObjectKind _ ) As String() [C#] public String() this[ EpObjectKind Kind ] { get; } [C++] public: __property String()* get_PossibleEntries( EpObjectKind Kind ); [JScript] returnValue = ApplicationTooltipsObject.Item( Kind ); -or- returnValue = ApplicationTooltipsObject( Kind );
[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.
Reading: array containing possible entries (as strings) for the spezified kind
ApplicationTooltips Class | EbsOpen Namespace