Quantcast
Channel: 吟遊詩人の戯言
Viewing all articles
Browse latest Browse all 17795

【iTextSharp】セルの高さ指定は,FixedHeightプロパティ

$
0
0

セルの高さが自由設定モードで気色悪い>iTextSharp
これ,固定に出来んもんじゃろかいな?と調べること10分

なんのことはない,そのものずばりFixedHeightプロパティなるものが準備されておったわ(汗

こんな感じでOK

  1. PdfPCell cell = new PdfPCell(new Phrase("hogehoge", fntNormal));
  2. cell.HorizontalAlignment =  Element.ALIGN_LEFT ;
  3. cell.BackgroundColor = BaseColor.WHITE;
  4. cell.VerticalAlignment  = Element.ALIGN_MIDDLE;
  5. cell.FixedHeight = 22f;                                     // <--これ

とりあえず,PDFな帳票,大量生産モードの準備はできたぞな(;´Д`)ハァハァ

Viewing all articles
Browse latest Browse all 17795

Trending Articles