Copies columns and pastes them at the specified location.
Syntax
'Declaration
Public Sub CopyColumns( _
ByVal fromColumn As System.Integer, _
ByVal toColumn As System.Integer, _
ByVal As System.Integer _
)
'Usage
Dim instance As SheetSpanModel
Dim fromColumn As System.Integer
Dim toColumn As System.Integer
Dim count As System.Integer
instance.CopyColumns(fromColumn, toColumn, count)
public void CopyColumns(
System.int fromColumn,
System.int toColumn,
System.int
)
Parameters
- fromColumn
- The column index at which to start copying.
- toColumn
- The column index at which to paste columns.
- count
- The number of columns to copy.
See Also