AttributeTranslation Constructors

Definition

Overloads

AttributeTranslation()

Initializes a new instance of the AttributeTranslation class, using default values.

AttributeTranslation(Int32)

Initializes a new instance of the AttributeTranslation class, using the specified language.

AttributeTranslation(Int32, String)

Initializes a new instance of the AttributeTranslation class, using the specified language and caption.

AttributeTranslation()

Initializes a new instance of the AttributeTranslation class, using default values.

public AttributeTranslation ();
Public Sub New ()

Applies to

AttributeTranslation(Int32)

Initializes a new instance of the AttributeTranslation class, using the specified language.

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

Parameters

language
Int32

An Integer representation of the language to be used with the AttributeTranslation.

Applies to

AttributeTranslation(Int32, String)

Initializes a new instance of the AttributeTranslation class, using the specified language and caption.

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

Parameters

language
Int32

An Integer representation of the language to be used with the AttributeTranslation.

caption
String

A String with the caption.

Applies to