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