Level Constructors

Definition

Overloads

Level()

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

Level(String)

Initializes a new instance of Level using the specified name.

Level(String, String)

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

Level()

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

public Level ();
Public Sub New ()

Applies to

Level(String)

Initializes a new instance of Level using the specified name.

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

Parameters

name
String

A String that contains the name of the Level.

Applies to

Level(String, String)

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

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

Parameters

name
String

A String that contains the name of the Level.

id
String

A String that contains a unique identifier for the Level.

Applies to