F1Book 中如何设置单元格合并?(50分)

  • 主题发起人 主题发起人 yshu
  • 开始时间 开始时间
Y

yshu

Unregistered / Unconfirmed
GUEST, unregistred user!
F1Book 中如何设置单元格合并?
 
横向还是可以合并的
f1book1.setselection(1,1,1,5);
f1book1.setalignment…………
自己查查help一定行的。
但纵向的好像不能合并。
 
procedure MergeCells;
var
CellFmt: F1CellFormat;
begin
CellFmt :=f1Book1.GetCellFormat

CellFmt.MergeCells := True;
f1Book1.SetCellFormat(CellFmt);
end;
 
procedure MergeCells;
var
CellFmt: F1CellFormat;
begin
CellFmt :=f1Book1.GetCellFormat

CellFmt.MergeCells := True;
f1Book1.SetCellFormat(CellFmt);
end;
 
to receyes:
请问,你用的F1Book 的版本号是多少?
我的是delphi 5.0自带的吗(formula one 3.0),其中没有GetCellFormat,MergeCells
方法?
你能给我将该版本的F1Book e_mail 到我的信箱:seeseainwind@263.net,或是
告诉我去哪里下载你所用版本的控件吗?
Thank you very much!

 
多人接受答案了。
 
后退
顶部