Name (Measure Interface)
![]() |
---|
В следующей версии Microsoft SQL Server эта возможность будет удалена. Не используйте ее при работе над новыми приложениями и как можно быстрее измените приложения, в которых она в настоящее время используется. |
The Name property of the Measure interface contains the name of the measure object.
Applies To:clsAggregationMeasure, clsCubeMeasure, clsPartitionMeasure
Data Type
String
Access
Read/write (Objects can be renamed after their initial creation.)
Пример
Use the following code to create a cube measure object and name it MyMeasure:
'Assume an object (dsoCube) of ClassType clsCube exists
Dim dsoMeasure As DSO.Measure
Set dsoMeasure = dsoCube.Measures.AddNew("MyMeasure")