ActionCollection.Move Method

Definition

Overloads

Move(Action, Int32)

Moves the specified Action to a new position in the collection.

Move(Int32, Int32)

Moves an Action in the collection from the current position to a new one.

Move(String, Int32)

Moves an Action, with the specified identifier, to a new position in the collection.

Move(Action, Int32)

Moves the specified Action to a new position in the collection.

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

Parameters

item
Action

The Action to be moved.

toIndex
Int32

The zero-based index to which to move the specified Action.

Exceptions

  • The specified Action does not exist the collection.
  • The specified toIndex is not a valid value (less than zero or bigger then the total number of elements).

Applies to

Move(Int32, Int32)

Moves an Action in the collection from the current position to a new one.

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

Parameters

fromIndex
Int32

The zero-based index of the Action to be moved.

toIndex
Int32

The zero-based index to which to move the Action specified by fromIndex.

Returns

The Action that was moved.

Exceptions

  • The specified fromIndex is not a valid value (less than zero or bigger then the total number of elements).
  • The specified toIndex is not a valid value (less than zero or bigger then the total number of elements).

Applies to

Move(String, Int32)

Moves an Action, with the specified identifier, to a new position in the collection.

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

Parameters

id
String

The identifier of the Action to be moved.

toIndex
Int32

The zero-based index to which to move the Action specified by fromIndex.

Returns

The Action that was moved.

Exceptions

  • id is not a valid identifier to an Action in the collection.
  • The specified toIndex is not a valid value (less than zero or bigger then the total number of elements).

Applies to