MeasureGroup.StorageLocation Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the storagelocation asscociated with a MeasureGroup.

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

Syntax

[XmlElementAttribute(IsNullable = false)]
[TypeConverterAttribute("Microsoft.AnalysisServices.Design.StorageLocationTypeConverter, Microsoft.AnalysisServices.Design")]
[EditorAttribute("Microsoft.AnalysisServices.Design.StorageLocationTypeEditor, Microsoft.AnalysisServices.Design", 
    typeof(UITypeEditor))]
public string StorageLocation { get; set; }
public:
[XmlElementAttribute(IsNullable = false)]
[TypeConverterAttribute("Microsoft.AnalysisServices.Design.StorageLocationTypeConverter, Microsoft.AnalysisServices.Design")]
[EditorAttribute("Microsoft.AnalysisServices.Design.StorageLocationTypeEditor, Microsoft.AnalysisServices.Design", 
    (UITypeEditor^::typeid))]
property String^ StorageLocation {
    String^ get();
    void set(String^ value);
}
[<XmlElementAttribute(IsNullable = false)>]
[<TypeConverterAttribute("Microsoft.AnalysisServices.Design.StorageLocationTypeConverter, Microsoft.AnalysisServices.Design")>]
[<EditorAttribute("Microsoft.AnalysisServices.Design.StorageLocationTypeEditor, Microsoft.AnalysisServices.Design",
    typeof(UITypeEditor))>]
member StorageLocation : string with get, set
<XmlElementAttribute(IsNullable := False)>
<TypeConverterAttribute("Microsoft.AnalysisServices.Design.StorageLocationTypeConverter, Microsoft.AnalysisServices.Design")>
<EditorAttribute("Microsoft.AnalysisServices.Design.StorageLocationTypeEditor, Microsoft.AnalysisServices.Design",
    GetType(UITypeEditor))>
Public Property StorageLocation As String

Property Value

Type: System.String

The storage location of the MeasureGroup.

Remarks

This defaults to the value from the parent Cube.

See Also

MeasureGroup Class
Microsoft.AnalysisServices Namespace

Return to top