PerspectiveMeasureGroupCollection.Move Method

Definition

Overloads

Move(PerspectiveMeasureGroup, Int32)

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

Move(Int32, Int32)

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

Move(String, Int32)

Moves a PerspectiveMeasureGroup, with the specified MeasureGroupID, to a new position in the collection.

Move(PerspectiveMeasureGroup, Int32)

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

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

Parameters

toIndex
Int32

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

Exceptions

  • The specified PerspectiveMeasureGroup 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 a PerspectiveMeasureGroup in the collection from the current position to a new one.

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

Parameters

fromIndex
Int32

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

toIndex
Int32

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

Returns

The PerspectiveMeasureGroup 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 a PerspectiveMeasureGroup, with the specified MeasureGroupID, to a new position in the collection.

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

Parameters

measureGroupId
String

The MeasureGroupID of the PerspectiveMeasureGroup to be moved.

toIndex
Int32

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

Returns

The PerspectiveMeasureGroup that was moved.

Exceptions

  • measureGroupId is not a valid MeasureGroupID to a PerspectiveMeasureGroup in the collection.
  • The specified toIndex is not a valid value (less than zero or bigger then the total number of elements).

Applies to