Analysis Services Programming
AggregationAnalysisInitialized (clsPartitionAnalyzer)
The AggregationAnalysisInitialized property of an object of ClassType clsPartitionAnalyzer indicates the status of the last invocation of the InitializeDesign method.
Data Type
Boolean
Access
Read-only
Remarks
The AggregationAnalysisInitialized property returns True if the InitializeDesign method was called successfully, False otherwise.
Example
Use the following code to check the initialization status of an object of ClassType clsPartitionAnalyzer. For more information, see InitializeDesign.
' Assume the existence of an object (dsoPartAnalyzer) of ClassType
' clsPartitionAnalyzer.
If dsoPartAnalyzer.AggregationAnalysisInitialized Then
Debug.Print "Initialization OK"
Else
Debug.Print "Not Initialized"
End If