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