次の方法で共有


PerspectiveDimensionCollection.Move メソッド

定義

オーバーロード

Move(PerspectiveDimension, Int32)

指定した PerspectiveDimension をコレクション内の新しい位置に移動します。

Move(Int32, Int32)

PerspectiveDimension をコレクション内の現在の位置から新しい位置に移動します。

Move(String, Int32)

指定した CubeDimensionID を持つ PerspectiveDimension をコレクション内の新しい位置に移動します。

Move(PerspectiveDimension, Int32)

指定した PerspectiveDimension をコレクション内の新しい位置に移動します。

public void Move (Microsoft.AnalysisServices.PerspectiveDimension item, int toIndex);
override this.Move : Microsoft.AnalysisServices.PerspectiveDimension * int -> unit
Public Sub Move (item As PerspectiveDimension, toIndex As Integer)

パラメーター

item
PerspectiveDimension

移動する PerspectiveDimension です。

toIndex
Int32

指定した PerspectiveDimension の移動先である、0 から始まるインデックスです。

例外

  • 指定した PerspectiveDimension がコレクションに存在しません。
  • 指定した toIndex が有効な値ではありません (0 より小さいか、要素の合計数を超えています)。

適用対象

Move(Int32, Int32)

PerspectiveDimension をコレクション内の現在の位置から新しい位置に移動します。

public Microsoft.AnalysisServices.PerspectiveDimension Move (int fromIndex, int toIndex);
override this.Move : int * int -> Microsoft.AnalysisServices.PerspectiveDimension
Public Function Move (fromIndex As Integer, toIndex As Integer) As PerspectiveDimension

パラメーター

fromIndex
Int32

移動する PerspectiveDimension の、0 から始まるインデックスです。

toIndex
Int32

fromIndex で指定した PerspectiveDimension の移動先である、0 から始まるインデックスです。

戻り値

移動された PerspectiveDimension です。

例外

  • 指定された fromIndex が有効な値ではありません (0 より小さいか、要素の合計数を超えています)。
  • 指定した toIndex が有効な値ではありません (0 より小さいか、要素の合計数を超えています)。

適用対象

Move(String, Int32)

指定した CubeDimensionID を持つ PerspectiveDimension をコレクション内の新しい位置に移動します。

public Microsoft.AnalysisServices.PerspectiveDimension Move (string cubeDimensionId, int toIndex);
override this.Move : string * int -> Microsoft.AnalysisServices.PerspectiveDimension
Public Function Move (cubeDimensionId As String, toIndex As Integer) As PerspectiveDimension

パラメーター

cubeDimensionId
String

移動する PerspectiveDimension の CubeDimensionID です。

toIndex
Int32

fromIndex で指定した PerspectiveDimension の移動先である、0 から始まるインデックスです。

戻り値

移動された PerspectiveDimension です。

例外

  • cubeDimensionId は、コレクション内の への有効な CubeDimensionID PerspectiveDimension ではありません。
  • 指定した toIndex が有効な値ではありません (0 より小さいか、要素の合計数を超えています)。

適用対象