Condividi tramite


Find (clsCollection)

[!NOTA]

  Questa caratteristica verrà rimossa a partire dalla prossima versione di Microsoft SQL Server. Non utilizzare questa caratteristica in un nuovo progetto di sviluppo e modificare non appena possibile le applicazioni in cui è attualmente implementata.

The Find method of a Decision Support Objects (DSO) collection locates an item in a collection. This method does not apply to CustomProperties collections.

Sintassi

bPresent = object.Find(vKey)

Parametri

  • bPresent
    A Boolean variable that receives the returned value: True if the item was found, False otherwise.

  • object
    An instance of a DSO collection object.

  • vKey
    The key or index of the item to be found.

Esempio

Use the following code to check for the existence of a partition named EastCoast in the MDStores collection of partitions for a cube:

' Assume the existence of an object cubCube
' of ClassType clsCube.
Dim bPresent As Boolean 
bPresent = cubCube.MDStores.Find("EastCoast") 
 

Vedere anche

Riferimento