Worksheet
Copy Method (CellRange, CellRange, Boolean, Boolean, Boolean, Boolean)
|
Copys data from a source range to a destination range.
Namespace:
Spire.Xls
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
public void Copy(
CellRange sourceRange,
CellRange destRange,
bool copyStyle,
bool updateReference,
bool ignoreSize,
bool copyShape
)
Public Sub Copy (
sourceRange As CellRange,
destRange As CellRange,
copyStyle As Boolean,
updateReference As Boolean,
ignoreSize As Boolean,
copyShape As Boolean
)
public:
void Copy(
CellRange^ sourceRange,
CellRange^ destRange,
bool copyStyle,
bool updateReference,
bool ignoreSize,
bool copyShape
)
member Copy :
sourceRange : CellRange *
destRange : CellRange *
copyStyle : bool *
updateReference : bool *
ignoreSize : bool *
copyShape : bool -> unit
Parameters
-
sourceRange
-
Type:
Spire.Xls
CellRange
Source range.
-
destRange
-
Type:
Spire.Xls
CellRange
Destination range
-
copyStyle
-
Type:
System
Boolean
Indicates whether copy styles.
-
updateReference
-
Type:
System
Boolean
Indicates whether update reference ranges.
-
ignoreSize
-
Type:
System
Boolean
Indicates whether check range sizes.
-
copyShape
-
Type:
System
Boolean
Indicates whether copy shape.
See Also