Replace

Replace(string, string)

Sostituisce il valore di una cella con una nuova stringa.

public int Replace(string placeHolder, string newValue)
ParametroTipoDescrizione
placeHolderStringSegnaposto di cella
newValueStringValore stringa da sostituire

Esempi

[C#]

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

[Visual Basic]

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

Guarda anche


Replace(string, int)

Sostituisce il valore di una cella con un nuovo intero.

public int Replace(string placeHolder, int newValue)
ParametroTipoDescrizione
placeHolderStringSegnaposto di cella
newValueInt32Valore intero da sostituire

Esempi

[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)

Guarda anche


Replace(string, double)

Sostituisce il valore di una cella con un nuovo double.

public int Replace(string placeHolder, double newValue)
ParametroTipoDescrizione
placeHolderStringSegnaposto di cella
newValueDoubleDoppio valore da sostituire

Esempi


[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)

Guarda anche


Replace(string, string[], bool)

Sostituisce il valore di una cella con un nuovo array di stringhe.

public int Replace(string placeHolder, string[] newValues, bool isVertical)
ParametroTipoDescrizione
placeHolderStringSegnaposto di cella
newValuesString[]Matrice di stringhe da sostituire
isVerticalBooleanVero - Verticale, Falso - Orizzontale

Esempi


[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)

Guarda anche


Replace(string, int[], bool)

Sostituisce i valori delle celle con un array intero.

public int Replace(string placeHolder, int[] newValues, bool isVertical)
ParametroTipoDescrizione
placeHolderStringSegnaposto di cella
newValuesInt32[]Matrice intera da sostituire
isVerticalBooleanVero - Verticale, Falso - Orizzontale

Esempi

[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)

Guarda anche


Replace(string, double[], bool)

Sostituisce i valori delle celle con un doppio array.

public int Replace(string placeHolder, double[] newValues, bool isVertical)
ParametroTipoDescrizione
placeHolderStringSegnaposto di cella
newValuesDouble[]Doppio array da sostituire
isVerticalBooleanVero - Verticale, Falso - Orizzontale

Esempi


[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)

Guarda anche


Replace(string, DataTable)

Sostituisce i valori delle celle con i dati di aDataTable .

public int Replace(string placeHolder, DataTable insertTable)
ParametroTipoDescrizione
placeHolderStringSegnaposto di cella
insertTableDataTableDataTable da sostituire

Esempi

[C#]

Workbook workbook = new Workbook();
DataTable myDataTable = new DataTable("Customers");
// Aggiunge dati a myDataTable
........
workbook.Replace("AnOldValue", myDataTable);

[Visual Basic]

Dim workbook As Workbook =  New Workbook() 
Dim myDataTable As DataTable =  New DataTable("Customers") 
' Aggiunge dati a myDataTable
............
workbook.Replace("AnOldValue", myDataTable)

Guarda anche


Replace(bool, object)

Sostituisce i valori delle celle con nuovi dati.

public int Replace(bool boolValue, object newValue)
ParametroTipoDescrizione
boolValueBooleanIl valore booleano da sostituire.
newValueObjectNuovo valore. Può essere un valore stringa, intero, doppio o DateTime.

Guarda anche


Replace(int, object)

Sostituisce i valori delle celle con nuovi dati.

public int Replace(int intValue, object newValue)
ParametroTipoDescrizione
intValueInt32Il valore intero da sostituire.
newValueObjectNuovo valore. Può essere un valore stringa, intero, doppio o DateTime.

Guarda anche


Replace(string, string, ReplaceOptions)

Sostituisce il valore di una cella con una nuova stringa.

public int Replace(string placeHolder, string newValue, ReplaceOptions options)
ParametroTipoDescrizione
placeHolderStringSegnaposto di cella
newValueStringValore stringa da sostituire
optionsReplaceOptionsLe opzioni di sostituzione

Guarda anche