PowerTools ActiveReports for .NET 9.0J
MinRowHeight プロパティ
使用例 

Excelドキュメントで、行の最小の高さ(インチ単位)を示す値を取得または返します。より大きい値が、空のスペースに一致するように追加された行の数を減らすことで、単一行に複数のコントロールを配置するように強制します。
構文
'宣言
 
Public Property MinRowHeight As Single
public float MinRowHeight {get; set;}

プロパティ値

Single。デフォルト値は0.1です。
解説
MinRowHeightプロパティは、UseCellMergingプロパティをTrueに設定した場合にのみ有効になります。
使用例
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")
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");
参照

関連項目

XlsExport クラス
XlsExport メンバ

 

 


©2003-2015 GrapeCity inc. All rights reserved.