AggregationAttributeCollection.Move 메서드

정의

오버로드

Move(AggregationAttribute, Int32)

지정된 AggregationAttribute를 컬렉션의 새 위치로 이동합니다.

Move(Int32, Int32)

컬렉션의 AggregationAttribute을 현재 위치에서 새 위치로 이동합니다.

Move(String, Int32)

지정한 AttributeID를 가진 AggregationAttribute을 컬렉션에서 새 위치로 이동합니다.

Move(AggregationAttribute, Int32)

지정된 AggregationAttribute를 컬렉션의 새 위치로 이동합니다.

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

매개 변수

item
AggregationAttribute

이동할 AggregationAttribute입니다.

toIndex
Int32

지정된 AggregationAttribute를 이동할 인덱스(0부터 시작)입니다.

예외

  • 지정된 AggregationAttribute 가 컬렉션이 없습니다.
  • 지정된 toIndex가 유효한 값이 아닙니다(0보다 작거나 더 크면 총 요소 수).

적용 대상

Move(Int32, Int32)

컬렉션의 AggregationAttribute을 현재 위치에서 새 위치로 이동합니다.

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

매개 변수

fromIndex
Int32

이동할 AggregationAttribute의 인덱스(0부터 시작)입니다.

toIndex
Int32

fromIndex로 지정된 AggregationAttribute를 이동할 인덱스(0부터 시작)입니다.

반환

이동된 AggregationAttribute입니다.

예외

  • fromIndex에서 지정된 가 유효한 값이 아닙니다(0보다 작거나 크면 총 요소 수).
  • 지정된 toIndex가 유효한 값이 아닙니다(0보다 작거나 더 크면 총 요소 수).

적용 대상

Move(String, Int32)

지정한 AttributeID를 가진 AggregationAttribute을 컬렉션에서 새 위치로 이동합니다.

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

매개 변수

attributeId
String

이동할 AggregationAttribute의 AttributeID입니다.

toIndex
Int32

fromIndex로 지정된 AggregationAttribute를 이동할 인덱스(0부터 시작)입니다.

반환

이동된 AggregationAttribute입니다.

예외

  • attributeId는 컬렉션의 에 유효한 AttributeID AggregationAttribute 가 아닙니다.
  • 지정된 toIndex가 유효한 값이 아닙니다(0보다 작거나 더 크면 총 요소 수).

적용 대상