SummaryTableVisibleColumnCollectionMove Method TIBCO Spotfire 7.6 API Reference
Move the item at fromIndex to toIndex where both indexes are prior to any insertion and removal operations.

Namespace: Spotfire.Dxp.Application.Visuals
Assembly: Spotfire.Dxp.Application (in Spotfire.Dxp.Application.dll) Version: 25.11.10401.3615 (25.11.10401.3615)
Syntax

C#
public void Move(
	int fromIndex,
	int toIndex
)

Parameters

fromIndex
Type: SystemInt32
From index.
toIndex
Type: SystemInt32
To index.
Exceptions

ExceptionCondition
ArgumentOutOfRangeException fromIndex or toIndex is outside the range of valid indexes, that is, 0 : Count-1.
Remarks

The Move(Int32, Int32) method will move the item at position fromIndex in the collection to position toIndex, where toIndex is the index in the original collection where the moved item will be inserted; Move(0, 2) with input { A, B, C } will result in { B, C, A } after the move operation. Move(0, 0) will leave the collection unchanged. Move(0, 1) will result in { B, A, C }. Move(2, 0) will result in { C, A, B }.
Version Information

Supported in: 7.6, 7.5, 7.0, 6.5, 6.0, 5.5, 5.0
See Also

Reference