PowerTools ActiveReports for .NET 11.0J
AutoRowHeight プロパティ
使用例 

行内で最も大きいオブジェクトに合わせて、Excelが自動的に行の高さを調整するようにするかどうかを指定します。
構文
'宣言
 
Public Property AutoRowHeight As Boolean
public bool AutoRowHeight {get; set;}

プロパティ値

Trueを設定すると、行のコンテンツに基づいた行の高さをExcelが設定します。Falseを設定すると、XlsExportが、行の高さを計算します。場合によって、この方がExcelでの見た目をよりよくします。しかし、Excelから印刷するとき、Excelはページの高さを広げる場合があるため、Trueの値はページ割り付けに効果があります。
解説
通常、UseCellMergingがtrueの場合、このプロパティはtrueではありません。
使用例
GrapeCity.ActiveReports.Export.Excel.Section.XlsExport docexp = new GrapeCity.ActiveReports.Export.Excel.Section.XlsExport();
docexp.AutoRowHeight = true;
docexp.DisplayGridLines = true;
docexp.FileFormat = GrapeCity.ActiveReports.Export.Excel.Section.FileFormat.Xls95; //Xls97Plus または Xlsx
docexp.MinColumnWidth = 3;
docexp.MinRowHeight = 1;
docexp.MultiSheet = true;
docexp.RemoveVerticalSpace = true;
docexp.UseCellMerging = false;
docexp.Export(this.viewer1.Document, Application.StartupPath + "\\x.xls");
Dim docexp As New GrapeCity.ActiveReports.Export.Excel.Section.XlsExport()
docexp.AutoRowHeight=True
docexp.DisplayGridLines=True
docexp.FileFormat=GrapeCity.ActiveReports.Export.Excel.Section.FileFormat.Xls95 'Xls97Plus
docexp.MinColumnWidth=3
docexp.MinRowHeight=1
docexp.MultiSheet=True
docexp.RemoveVerticalSpace=True
docexp.UseCellMerging=False
docexp.Export(Me.viewer1.Document, Application.StartupPath + "\x.xls")
参照

関連項目

XlsExport クラス
XlsExport メンバ

 

 


©2003-2017 GrapeCity inc. All rights reserved.