UltraLite ActiveX User's Guide
UltraLite ActiveX API Reference
IULPublicationSchemas collection
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. |
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 }