如果是显示:
在stringgrid的ondrawcell中自己写就是了。
如:
procedure TForm1.StringGrid1DrawCell(Sender: TObject; ACol, ARow: Integer;
Rect: TRect; State: TGridDrawState);
begin
if (acol=1) and (arow=1) then
begin
textout(stringgrid1.Canvas.handle, rect.left,rect.top,pchar('line1'),12);
textout(stringgrid1.Canvas.handle, rect.left,rect.top+12,pchar('line2'),12);
end;
end;