XlsWorkbook
Replace Method (String,
Double
, Boolean)
|
Replaces specified string by data from array.
Namespace:
Spire.Xls.Core.Spreadsheet
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
public void Replace(
string oldValue,
double[] newValues,
bool isVertical
)
Public Sub Replace (
oldValue As String,
newValues As Double(),
isVertical As Boolean
)
public:
virtual void Replace(
String^ oldValue,
array<double>^ newValues,
bool isVertical
) sealed
abstract Replace :
oldValue : string *
newValues : float[] *
isVertical : bool -> unit
override Replace :
oldValue : string *
newValues : float[] *
isVertical : bool -> unit
Parameters
-
oldValue
-
Type:
System
String
String value to replace.
-
newValues
-
Type:
System
Double
Array of new values.
-
isVertical
-
Type:
System
Boolean
Indicates whether array should be inserted vertically.
Implements
IWorkbook
Replace(String,
Double
, Boolean)
See Also