Cube.Collation Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the collation string for a Cube.

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

Syntax

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

Property Value

Type: System.String

The collation type description.

Remarks

Collations specify the rules for how strings of character data are sorted and compared, based on the norms of particular languages and locales.

See Also

Cube Class
Microsoft.AnalysisServices Namespace

Return to top