Find (clsCollection)
メモ : |
---|
この機能は、Microsoft SQL Server の次のバージョンで削除されます。新規の開発作業ではこの機能を使用しないようにし、現在この機能を使用しているアプリケーションはできるだけ早く修正してください。 |
The Find method of a Decision Support Objects (DSO) collection locates an item in a collection. This method does not apply to CustomProperties collections.
構文
bPresent = object.Find(vKey)
パラメータ
- 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.
使用例
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")