Contents Index IULPublicationSchemas collection ULAuthStatusCode

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

Properties


Prototype Description
Count as long (read-only) Gets the number of publications in the collection.
Item (Index) as ULPublicationSchema (read-only) Gets a publication from the collection.
Example 

You can enumerate all the publications using the For Each statement in eMbedded Visual Basic or the for ... in statement in JScript.

' eMbedded Visual Basic
Dim pub As ULPublicationSchema
For Each pub In connection.schema.publications
    'use pub
Next
// JScript
var ps : UltraLite.ULPublicationSchema;
var collection = connection.schema.publications;
for ( pub in collection ) {
  ' use pub
}

Contents Index IULPublicationSchemas collection ULAuthStatusCode