Translation Constructors

Definition

Overloads

Translation()

Initializes a new instance of the Translation class using the default values.

Translation(Int32)

Initializes a new instance of the Translation class using the specified language.

Translation(Int32, String)

Initializes a new instance of the Translation class using the specified language and caption information.

Translation()

Initializes a new instance of the Translation class using the default values.

public Translation ();
Public Sub New ()

Applies to

Translation(Int32)

Initializes a new instance of the Translation class using the specified language.

public Translation (int language);
new Microsoft.AnalysisServices.Translation : int -> Microsoft.AnalysisServices.Translation
Public Sub New (language As Integer)

Parameters

language
Int32

The language for the Translation.

Applies to

Translation(Int32, String)

Initializes a new instance of the Translation class using the specified language and caption information.

public Translation (int language, string caption);
new Microsoft.AnalysisServices.Translation : int * string -> Microsoft.AnalysisServices.Translation
Public Sub New (language As Integer, caption As String)

Parameters

language
Int32

The language for the Translation.

caption
String

The caption to be used for display.

Applies to