Move メソッド (String, Int32)
指定した識別子の CalculationProperty を、コレクション内の指定したインデックスに移動します。
名前空間: Microsoft.AnalysisServices
アセンブリ: Microsoft.AnalysisServices (Microsoft.AnalysisServices.dll)
構文
'宣言
Public Function Move ( _
calculationReference As String, _
toIndex As Integer _
) As CalculationProperty
'使用
Dim instance As CalculationPropertyCollection
Dim calculationReference As String
Dim toIndex As Integer
Dim returnValue As CalculationProperty
returnValue = instance.Move(calculationReference, _
toIndex)
public CalculationProperty Move(
string calculationReference,
int toIndex
)
public:
CalculationProperty^ Move(
String^ calculationReference,
int toIndex
)
member Move :
calculationReference:string *
toIndex:int -> CalculationProperty
public function Move(
calculationReference : String,
toIndex : int
) : CalculationProperty
パラメーター
- calculationReference
型: System. . :: . .String
移動する CalculationProperty の識別子です。
- toIndex
型: System. . :: . .Int32
calculationReference で指定した CalculationProperty の移動先である、0 から始まるインデックスです。
例外
例外 | 条件 |
---|---|
ArgumentOutOfRangeException | fromIndex に 0 より小さい値が指定されています。 -または- fromIndex に [H:Microsoft.AnalysisServices.ModelComponentCollection.Count] 以上の値が指定されています。 -または- calculationReference がコレクションに含まれていません。 |