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