Language.Months Property

 

Applies To: SQL Server 2016 Preview

Gets the names of the months of the year for the referenced language.

Namespace:   Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

[SfcPropertyAttribute(SfcPropertyFlags.None | SfcPropertyFlags.Standalone | SfcPropertyFlags.Matrix)]
public string Months { get; }
public:
[SfcPropertyAttribute(SfcPropertyFlags::None | SfcPropertyFlags::Standalone | SfcPropertyFlags::Matrix)]
property String^ Months {
    String^ get();
}
[<SfcPropertyAttribute(SfcPropertyFlags.None | SfcPropertyFlags.Standalone | SfcPropertyFlags.Matrix)>]
member Months : string with get
<SfcPropertyAttribute(SfcPropertyFlags.None Or SfcPropertyFlags.Standalone Or SfcPropertyFlags.Matrix)>
Public ReadOnly Property Months As String

Property Value

Type: System.String

A String value that specifies the months of the year.

Remarks

The Months property contains the names of the months of the year in order, starting with the first month of the year.

Examples

Legacy Code Example

Setting Properties

See Also

Language Class
Microsoft.SqlServer.Management.Smo Namespace
sys.syslanguages (Transact-SQL)

Return to top