Contents Index IULIndexSchemas collection IULPublicationSchemas collection

UltraLite ActiveX User's Guide
  UltraLite ActiveX API Reference
    IULIndexSchemas collection

Properties


Prototype Description
Count as long (read-only) Gets the number of indexes in the collection.
Item (Index) as ULIndexSchema (read-only) Gets an index from the collection. Items are indexed using 1-origin indexing. Index can be a number from 1 to count.
Example 

You can enumerate the indexes on a table using the For Each statement in eMbedded Visual Basic or the for ... in statement in JScript.

' eMbedded Visual Basic
Dim index As ULIndexSchema
For Each index In TableSchema.Indexes
    'use index
Next
// JScript
var index : UltraLite.ULIndexSchema;
var collection = TableSchema.Indexes;
for ( index in collection ) {
  ' use index
}

Contents Index IULIndexSchemas collection IULPublicationSchemas collection