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