Available indexers?

  • Thread starter Thread starter Jim
  • Start date Start date
J

Jim

How does one determine what indexers are available on a given object?
The only way I have found is by looking at the Object Browser. But
even then it only gives a simple signature like, this[string,string].
What are those strings?

</jim>
 
If you type
object[
in the code editor, intellisense should pick up the available indexers.
It is up to the creators of the object to provide meaningfull names and
instructions if necessary.
HTH
JB
 
Back
Top