将多个XtraGrid控件导出到单个Excel文件时空行和列

时间:2014-04-14 11:42:58

标签: devexpress

我已经阅读了this article并进行了测试,但是我的问题是每个工作表(excel文件中)都有一个宽空列(A列)和一个宽空行(第1行)。我知道这是PrintingBase类的设置。但是我如何删除那些第一个空列和行?

1 个答案:

答案 0 :(得分:0)

我找到了自己问题的答案:

var compositeLink = new CompositeLinkBase();
var link1 = new PrintableComponentLinkBase();
// this is the margins in sheet1
link1.Margins.Left = 0;
link1.MinMargins.Left = 0;
link1.Component = DG1;
compositeLink.Links.Add(link1);
// then export to excel :)