CalculationProperty 构造函数

定义

重载

CalculationProperty()

使用默认值初始化 CalculationProperty 类的新实例。

CalculationProperty(String)

使用指定计算引用初始化 CalculationProperty 的新实例。

CalculationProperty(String, CalculationType)

使用指定计算引用和类型初始化 CalculationProperty 的新实例。

CalculationProperty()

使用默认值初始化 CalculationProperty 类的新实例。

public CalculationProperty ();
Public Sub New ()

适用于

CalculationProperty(String)

使用指定计算引用初始化 CalculationProperty 的新实例。

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

参数

calculationReference
String

指向在 MDX 脚本对象中定义的计算的名称。

适用于

CalculationProperty(String, CalculationType)

使用指定计算引用和类型初始化 CalculationProperty 的新实例。

public CalculationProperty (string calculationReference, Microsoft.AnalysisServices.CalculationType type);
new Microsoft.AnalysisServices.CalculationProperty : string * Microsoft.AnalysisServices.CalculationType -> Microsoft.AnalysisServices.CalculationProperty
Public Sub New (calculationReference As String, type As CalculationType)

参数

calculationReference
String

指向在 MDX 脚本对象中定义的计算的名称。

type
CalculationType

指定 MDX 脚本计算的类型。

适用于