SubClassType (Level Interface)
Hinweis: |
---|
Dieses Feature wird in der nächsten Version von Microsoft SQL Server entfernt. Verwenden Sie dieses Feature nicht zum Entwickeln neuer Anwendungen, und planen Sie das Ändern von Anwendungen, in denen es zurzeit verwendet wird, zum frühstmöglichen Zeitpunkt ein. |
The SubClassType property of the Level interface contains an enumeration constant that identifies the subclass type of the object.
Applies To:clsAggregationLevel, clsDatabaseLevel, clsCubeLevel, clsPartitionLevel
Data Type
Access
Read-only
Hinweise
Objects that implement the Level interface can have a SubClassType property of sbclsRegular, sbclsLinked, sbclsVirtual, sbclsMining, or sbclsParentChild.
Beispiel
Use the following code to check the SubClassType property of a level object.
' Assume an object (dsoLevel) of ClassType clsCubeLevel exists
If dsoLevel.SubClassType = sbclsParentChild Then
'Code to handle a parent-child level
Else
'Code to handle other types of levels
End If