ContainedClassType (clsCollection)
[!참고] 이 기능은 다음 버전의 Microsoft SQL Server에서 제거됩니다. 새 개발 작업에서는 이 기능을 사용하지 말고, 현재 이 기능을 사용하는 응용 프로그램은 가능한 한 빨리 수정하십시오.
The ContainedClassType property of a Decision Support Objects (DSO) collection returns the class type of the items contained within the collection. This property does not apply to CustomProperties collections.
Data Type
Access
Read-only
주의
The DSO object model uses the properties ClassType and SubClassType to identify the object. All DSO objects, with the exception of those of ClassType clsCube, clsLevel, and clsMiningModel, return a SubClassType of sbclsRegular. In addition to sbclsRegular, an object of ClassType clsCube or clsLevel can have a SubClassType of sbclsVirtual,which identifies the object as a virtual cube or a virtual (calculated) level. Objects of ClassType clsMiningModel return a SubClassType of sbclsOLAP or sbclsRelational, depending on the type of mining model defined by the object.
예
Use the following code to return a collection object's ContainedClassType and determine which class type has been returned:
Dim ctVar As ClassTypes
ctVar = CollectionObject.ContainedClassType
Select Case ctVar
Case clsCubeMeasure
' Insert code for a cube measure.
Case clsCubeDimension
' Insert code for a cube dimension.
Case clsCubeLevel
' Insert code for a cube level.
Case clsCubeCommand
' Insert code for a cube command.
Case clsCubeRole
' Insert code for a cube role.
Case Else
' Insert code for other objects.
End Select
참고 항목
참조
ClassTypes
clsDataSource
Command Interface
Dimension Interface
Level Interface
MDStore Interface
Role Interface