The IsValid property of the Dimension interface indicates whether the structure of a dimension object is valid. A structure is valid if it is fully and correctly defined. For example, a dimension object whose data source has not been defined is invalid.
| clsAggregationDimension | clsDatabaseDimension |
| clsCubeDimension | clsPartitionDimension |
Boolean
Read-only
Use the following code to determine whether the structure of a dimension object is valid:
'Assume an object (dsoDim) of ClassType clsDimension exists
Dim bValid As Boolean
bValid = dsoDim.IsValid
If bValid Then
'Code to process a valid dimension
Else
'Something is not valid - handle errors
End If
| About Decision Support Objects | Using Decision Support Objects |
| Properties Cross-Reference |