Characters

Cell.Characters method

返回一个 Characters 对象,该对象表示单元格文本中的一系列字符。

public FontSetting Characters(int startIndex, int length)
范围类型描述
startIndexInt32字符开头的索引。
lengthInt32字符数。

返回值

字符对象。

评论

此方法仅适用于具有字符串值的单元格。

例子

[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

也可以看看