TranslationCollection.Move 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Move(Translation, Int32) |
将指定的 Translation 移动到集合中的新位置。 |
Move(Int32, Int32) |
将集合中的 Translation 从当前位置移动到新位置。 |
Move(Translation, Int32)
将指定的 Translation 移动到集合中的新位置。
public void Move (Microsoft.AnalysisServices.Translation item, int toIndex);
override this.Move : Microsoft.AnalysisServices.Translation * int -> unit
Public Sub Move (item As Translation, toIndex As Integer)
参数
- item
- Translation
要移动的 Translation。
- toIndex
- Int32
要将指定的 Translation 移动到的从零开始的索引。
例外
- 指定的 Translation 集合不存在。
- 指定的 toIndex 不是有效值, (小于零或更大,则) 元素总数。
适用于
Move(Int32, Int32)
将集合中的 Translation 从当前位置移动到新位置。
public Microsoft.AnalysisServices.Translation Move (int fromIndex, int toIndex);
override this.Move : int * int -> Microsoft.AnalysisServices.Translation
Public Function Move (fromIndex As Integer, toIndex As Integer) As Translation
参数
- fromIndex
- Int32
要移动的 Translation 的从零开始的索引。
- toIndex
- Int32
要将 fromIndex 指定的 Translation 移动到的从零开始的索引。
返回
已移动的 Translation。
例外
- 指定的 fromIndex 不是有效值, (小于零或更大,则) 元素总数。
- 指定的 toIndex 不是有效值, (小于零或更大,则) 元素总数。