Measure Constructors

Definition

Overloads

Measure()

Initializes a new instance of Measure using the default values.

Measure(String)

Initializes a new instance of Measure using the specified name.

Measure(String, String)

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

Measure()

Initializes a new instance of Measure using the default values.

public Measure ();
Public Sub New ()

Applies to

Measure(String)

Initializes a new instance of Measure using the specified name.

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

Parameters

name
String

A String that contains the name of the Measure.

Applies to

Measure(String, String)

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

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

Parameters

name
String

A String that contains the name of the Measure.

id
String

A String that contains a unique identifier for the Measure.

Applies to