Cube Constructors

Definition

Overloads

Cube()

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

Cube(String)

Initializes a new instance of Cube using the specified name.

Cube(String, String)

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

Cube()

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

public Cube ();
Public Sub New ()

Applies to

Cube(String)

Initializes a new instance of Cube using the specified name.

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

Parameters

name
String

A String that contains the name of the cube.

Applies to

Cube(String, String)

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

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

Parameters

name
String

A String that contains the name of the cube.

id
String

A String that contains a unique identifier for the cube.

Applies to