DimensionAttribute Constructors

Definition

Overloads

DimensionAttribute()

Initializes a new instance of DimensionAttribute using the default values.

DimensionAttribute(String)

Initializes a new instance of DimensionAttribute using the specified name.

DimensionAttribute(String, String)

Initializes a new instance of DimensionAttribute using the specified name and identifier.

DimensionAttribute()

Initializes a new instance of DimensionAttribute using the default values.

public DimensionAttribute ();
Public Sub New ()

Applies to

DimensionAttribute(String)

Initializes a new instance of DimensionAttribute using the specified name.

public DimensionAttribute (string name);
new Microsoft.AnalysisServices.DimensionAttribute : string -> Microsoft.AnalysisServices.DimensionAttribute
Public Sub New (name As String)

Parameters

name
String

The name of the DimensionAttribute.

Applies to

DimensionAttribute(String, String)

Initializes a new instance of DimensionAttribute using the specified name and identifier.

public DimensionAttribute (string name, string id);
new Microsoft.AnalysisServices.DimensionAttribute : string * string -> Microsoft.AnalysisServices.DimensionAttribute
Public Sub New (name As String, id As String)

Parameters

name
String

A String that contains the name of the DimensionAttribute.

id
String

A String that contains a unique identifier for the DimensionAttribute.

Applies to