Cube.Source Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the source for a relational cube.

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

Syntax

[EditorAttribute("Microsoft.AnalysisServices.Design.CubeSourcePropertyTypeEditor, Microsoft.AnalysisServices.Design", 
    typeof(UITypeEditor))]
[ReadOnlyAttribute(true)]
[XmlElementAttribute(IsNullable = false)]
[TypeConverterAttribute("Microsoft.AnalysisServices.Design.CubeSourceTypeConverter, Microsoft.AnalysisServices.Design")]
[MergablePropertyAttribute(false)]
public DataSourceViewBinding Source { get; set; }
public:
[EditorAttribute("Microsoft.AnalysisServices.Design.CubeSourcePropertyTypeEditor, Microsoft.AnalysisServices.Design", 
    (UITypeEditor^::typeid))]
[ReadOnlyAttribute(true)]
[XmlElementAttribute(IsNullable = false)]
[TypeConverterAttribute("Microsoft.AnalysisServices.Design.CubeSourceTypeConverter, Microsoft.AnalysisServices.Design")]
[MergablePropertyAttribute(false)]
property DataSourceViewBinding^ Source {
    DataSourceViewBinding^ get();
    void set(DataSourceViewBinding^ value);
}
[<EditorAttribute("Microsoft.AnalysisServices.Design.CubeSourcePropertyTypeEditor, Microsoft.AnalysisServices.Design",
    typeof(UITypeEditor))>]
[<ReadOnlyAttribute(true)>]
[<XmlElementAttribute(IsNullable = false)>]
[<TypeConverterAttribute("Microsoft.AnalysisServices.Design.CubeSourceTypeConverter, Microsoft.AnalysisServices.Design")>]
[<MergablePropertyAttribute(false)>]
member Source : DataSourceViewBinding with get, set
<EditorAttribute("Microsoft.AnalysisServices.Design.CubeSourcePropertyTypeEditor, Microsoft.AnalysisServices.Design",
    GetType(UITypeEditor))>
<ReadOnlyAttribute(True)>
<XmlElementAttribute(IsNullable := False)>
<TypeConverterAttribute("Microsoft.AnalysisServices.Design.CubeSourceTypeConverter, Microsoft.AnalysisServices.Design")>
<MergablePropertyAttribute(False)>
Public Property Source As DataSourceViewBinding

Property Value

Type: Microsoft.AnalysisServices.DataSourceViewBinding

A DataSourceViewBinding object.

See Also

Cube Class
Microsoft.AnalysisServices Namespace

Return to top