Characters
Cell.Characters method
Restituisce un oggetto Caratteri che rappresenta un intervallo di caratteri all’interno del testo della cella.
public FontSetting Characters(int startIndex, int length)
Parametro | Tipo | Descrizione |
---|---|---|
startIndex | Int32 | L’indice dell’inizio del carattere. |
length | Int32 | Il numero di caratteri. |
Valore di ritorno
Personaggi oggetto.
Osservazioni
Questo metodo funziona solo su celle con valore stringa.
Esempi
[C#]
Workbook excel = new Workbook();
Cells cells = excel.Worksheets[0].Cells;
cells["A1"].PutValue("Helloworld");
cells["A1"].Characters(5, 5).Font.IsBold = true;
cells["A1"].Characters(5, 5).Font.Color = Color.Blue;
[Visual Basic]
Dim excel as Workbook = new Workbook()
Dim cells as Cells = exce.Worksheets(0).Cells
cells("A1").PutValue("Helloworld")
cells("A1").Characters(5, 5).Font.IsBold = True
cells("A1").Characters(5, 5).Font.Color = Color.Blue
Guarda anche
- class FontSetting
- class Cell
- spazio dei nomi Aspose.Cells
- assemblea Aspose.Cells