答案 0 :(得分:3)
使用单元格的Characters
属性来应用每个字符的格式。这是一个非常简单的例子:
uses
ComObj, ActiveX, Graphics;
var
Excel: OleVariant;
Book: OleVariant;
Cell: OleVariant;
begin
CoInitialize(nil);
Excel := CreateOleObject('Excel.Application');
Book := Excel.WorkBooks.Add;
Cell := Excel.Cells[1,1];
Cell.Value := 'I DON''T SAY BLEH BLEH BLEH!!!';
Cell.Characters(13, 14).Font.Color := clRed;
Book.SaveAs('temp.xlsx');
Excel.Quit;
end.
这里13是第一个字符的索引,14是要选择的字符数。
这使用后期绑定。如果您更喜欢早期绑定,那么我希望代码需要稍微调整一下。
答案 1 :(得分:0)
顺便说一句,如果你想为Boldface设置喜欢的风格。这样写:
Cell.Characters(13, 14).Font.Bold := True;