Replace

Replace(string, string)

Ersätter en cells värde med en ny sträng.

public int Replace(string placeHolder, string newValue)
ParameterTypBeskrivning
placeHolderStringCellplatshållare
newValueStringSträngvärde att ersätta

Exempel

[C#]

Workbook workbook = new Workbook();
......
workbook.Replace("AnOldValue", "NewValue");

[Visual Basic]

Dim workbook As Workbook =  New Workbook() 
 ........
orkbook.Replace("AnOldValue", "NewValue")

Se även


Replace(string, int)

Ersätter en cells värde med ett nytt heltal.

public int Replace(string placeHolder, int newValue)
ParameterTypBeskrivning
placeHolderStringCellplatshållare
newValueInt32Heltalsvärde som ska ersättas

Exempel

[C#]

Workbook workbook = new Workbook();
......
int newValue = 100;
workbook.Replace("AnOldValue", newValue);

[Visual Basic]

Dim workbook As Workbook =  New Workbook() 
........
im NewValue As Integer =  100 
orkbook.Replace("AnOldValue", NewValue)

Se även


Replace(string, double)

Ersätter en cells värde med en ny dubbel.

public int Replace(string placeHolder, double newValue)
ParameterTypBeskrivning
placeHolderStringCellplatshållare
newValueDoubleDubbelt värde att byta ut

Exempel


[C#]

Workbook workbook = new Workbook();
......
double newValue = 100.0;
workbook.Replace("AnOldValue", newValue);


[Visual Basic]

Dim workbook As Workbook =  New Workbook() 
........
im NewValue As Double =  100.0
orkbook.Replace("AnOldValue", NewValue)

Se även


Replace(string, string[], bool)

Ersätter en cells värde med en ny strängmatris.

public int Replace(string placeHolder, string[] newValues, bool isVertical)
ParameterTypBeskrivning
placeHolderStringCellplatshållare
newValuesString[]Strängarray att ersätta
isVerticalBooleanSant - Vertikalt, Falskt - Horisontellt

Exempel


[C#]

Workbook workbook = new Workbook();
......
string[] newValues = new string[]{"Tom", "Alice", "Jerry"};
workbook.Replace("AnOldValue", newValues, true);

[Visual Basic]

Dim workbook As Workbook =  New Workbook() 
.............
im NewValues() As String =  New String() {"Tom", "Alice", "Jerry"}		
orkbook.Replace("AnOldValue", NewValues, True)

Se även


Replace(string, int[], bool)

Ersätter cellvärden med en heltalsmatris.

public int Replace(string placeHolder, int[] newValues, bool isVertical)
ParameterTypBeskrivning
placeHolderStringCellplatshållare
newValuesInt32[]Heltalsmatris att ersätta
isVerticalBooleanSant - Vertikalt, Falskt - Horisontellt

Exempel

[C#]

Workbook workbook = new Workbook();
......
int[] newValues = new int[]{1, 2, 3};
workbook.Replace("AnOldValue", newValues, true);

[Visual Basic]

Dim workbook As Workbook =  New Workbook() 
..........
im NewValues() As Integer =  New Integer() {1, 2, 3}
orkbook.Replace("AnOldValue", NewValues, True)

Se även


Replace(string, double[], bool)

Ersätter cellernas värden med en dubbel array.

public int Replace(string placeHolder, double[] newValues, bool isVertical)
ParameterTypBeskrivning
placeHolderStringCellplatshållare
newValuesDouble[]Dubbel array att byta ut
isVerticalBooleanSant - Vertikalt, Falskt - Horisontellt

Exempel


[C#]

Workbook workbook = new Workbook();
......
double[] newValues = new double[]{1.23, 2.56, 3.14159};
workbook.Replace("AnOldValue", newValues, true);

[Visual Basic]

Dim workbook As Workbook =  New Workbook() 
...........
Dim NewValues() As Double =  New Double() {1.23, 2.56, 3.14159}
workbook.Replace("AnOldValue", NewValues, True)

Se även


Replace(string, DataTable)

Ersätter cellernas värden med data från enDataTable .

public int Replace(string placeHolder, DataTable insertTable)
ParameterTypBeskrivning
placeHolderStringCellplatshållare
insertTableDataTableDataTable att ersätta

Exempel

[C#]

Workbook workbook = new Workbook();
DataTable myDataTable = new DataTable("Customers");
// Lägger till data till myDataTable
........
workbook.Replace("AnOldValue", myDataTable);

[Visual Basic]

Dim workbook As Workbook =  New Workbook() 
Dim myDataTable As DataTable =  New DataTable("Customers") 
' Lägger till data till myDataTable
............
workbook.Replace("AnOldValue", myDataTable)

Se även


Replace(bool, object)

Ersätter cellernas värden med nya data.

public int Replace(bool boolValue, object newValue)
ParameterTypBeskrivning
boolValueBooleanDet booleska värdet som ska ersättas.
newValueObjectNytt värde. Kan vara sträng, heltal, dubbel eller DateTime värde.

Se även


Replace(int, object)

Ersätter cellernas värden med nya data.

public int Replace(int intValue, object newValue)
ParameterTypBeskrivning
intValueInt32Heltalsvärdet som ska ersättas.
newValueObjectNytt värde. Kan vara sträng, heltal, dubbel eller DateTime värde.

Se även


Replace(string, string, ReplaceOptions)

Ersätter en cells värde med en ny sträng.

public int Replace(string placeHolder, string newValue, ReplaceOptions options)
ParameterTypBeskrivning
placeHolderStringCellplatshållare
newValueStringSträngvärde att ersätta
optionsReplaceOptionsErsätt alternativen

Se även