次の方法で共有


DimensionAttributeCollection.Move メソッド

定義

オーバーロード

Move(DimensionAttribute, Int32)

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

Move(Int32, Int32)

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

Move(String, Int32)

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

Move(DimensionAttribute, Int32)

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

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

パラメーター

item
DimensionAttribute

移動する DimensionAttribute です。

toIndex
Int32

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

例外

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

適用対象

Move(Int32, Int32)

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

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

パラメーター

fromIndex
Int32

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

toIndex
Int32

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

戻り値

移動された DimensionAttribute です。

例外

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

適用対象

Move(String, Int32)

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

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

パラメーター

id
String

移動する DimensionAttribute の識別子です。

toIndex
Int32

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

戻り値

移動された DimensionAttribute です。

例外

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

適用対象