Visual Basic (Declaration) | |
---|---|
Public Overridable Sub Swap( _ ByVal fromRow As Integer, _ ByVal fromColumn As Integer, _ ByVal toRow As Integer, _ ByVal toColumn As Integer, _ ByVal rowCount As Integer, _ ByVal columnCount As Integer _ ) |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As DefaultSheetSpanModel Dim fromRow As Integer Dim fromColumn As Integer Dim toRow As Integer Dim toColumn As Integer Dim rowCount As Integer Dim columnCount As Integer instance.Swap(fromRow, fromColumn, toRow, toColumn, rowCount, columnCount) |
C# | |
---|---|
public virtual void Swap( int fromRow, int fromColumn, int toRow, int toColumn, int rowCount, int columnCount ) |
Parameters
- fromRow
- Row index from which to begin swap
- fromColumn
- Column index from which to begin swap
- toRow
- Row index at which to get cell span to swap
- toColumn
- Column index at which to get cell span to swap
- rowCount
- Number of rows to swap
- columnCount
- Number of columns to swap
This example swaps a span from one location to another.
C# | Copy Code |
---|---|
FarPoint.Win.Spread.Model.DefaultSheetSpanModel defspanModel = new FarPoint.Win.Spread.Model.DefaultSheetSpanModel();
fpSpread1.ActiveSheet.Models.Span = defspanModel;
defspanModel.Swap(4, 0, 0, 4, 2, 2); |
Visual Basic | Copy Code |
---|---|
Dim defspanModel As New FarPoint.Win.Spread.Model.DefaultSheetSpanModel() FpSpread1.ActiveSheet.Models.Span = defspanModel defspanModel.Swap(4, 0, 0, 4, 2, 2) |
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2