CellRange
Move Method (CellRange, Boolean, Boolean)
|
Moves the range to the specified destination range with options for copying styles and updating references.
Namespace:
Spire.Xls
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
public void Move(
CellRange destRange,
bool copyStyle,
bool updateReference
)
Public Sub Move (
destRange As CellRange,
copyStyle As Boolean,
updateReference As Boolean
)
public:
void Move(
CellRange^ destRange,
bool copyStyle,
bool updateReference
)
member Move :
destRange : CellRange *
copyStyle : bool *
updateReference : bool -> unit
Parameters
-
destRange
-
Type:
Spire.Xls
CellRange
The destination range to move the range to.
-
copyStyle
-
Type:
System
Boolean
Whether to copy the styles from the source range to the destination range.
-
updateReference
-
Type:
System
Boolean
Whether to update the references in the destination range.
See Also