Cube.AllMeasures Property

 

Applies To: SQL Server 2016 Preview

Gets all measures as an enumeration object.

Namespace:   Microsoft.AnalysisServices
Assembly:  Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)

Syntax

[XmlIgnoreAttribute]
[BrowsableAttribute(false)]
public MeasureEnumerator AllMeasures { get; }
public:
[XmlIgnoreAttribute]
[BrowsableAttribute(false)]
property MeasureEnumerator^ AllMeasures {
    MeasureEnumerator^ get();
}
[<XmlIgnoreAttribute>]
[<BrowsableAttribute(false)>]
member AllMeasures : MeasureEnumerator with get
<XmlIgnoreAttribute>
<BrowsableAttribute(False)>
Public ReadOnly Property AllMeasures As MeasureEnumerator

Property Value

Type: Microsoft.AnalysisServices.MeasureEnumerator

A MeasureEnumerator object.

Remarks

A MeasureEnumerator is not a collection, but behaves similar to a collection. The enumeration can be walked using MoveNext() method. To reposition the enumeration at the starting you use Reset() method. The actual instance is obtained from the Current property of the enumeration.

See Also

Cube Class
Microsoft.AnalysisServices Namespace

Return to top