Dimension Constructors

Definition

Overloads

Dimension()

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

Dimension(String)

Initializes a new instance of Dimension class using the specified name.

Dimension(String, String)

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

Dimension()

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

public Dimension ();
Public Sub New ()

Applies to

Dimension(String)

Initializes a new instance of Dimension class using the specified name.

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

Parameters

name
String

A String containing the name of the Dimension.

Applies to

Dimension(String, String)

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

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

Parameters

name
String

A String containing the name of the Dimension.

id
String

A String containing a unique identifier for the Dimension.

Applies to