セルの高さが自由設定モードで気色悪い>iTextSharp
これ,固定に出来んもんじゃろかいな?と調べること10分
なんのことはない,そのものずばりFixedHeightプロパティなるものが準備されておったわ(汗
こんな感じでOK
PdfPCell cell
= new PdfPCell
(new Phrase
("hogehoge", fntNormal
));
cell.HorizontalAlignment = Element.ALIGN_LEFT ;
cell.BackgroundColor = BaseColor.WHITE;
cell.VerticalAlignment = Element.ALIGN_MIDDLE;
cell.FixedHeight = 22f; // <--これ
とりあえず,PDFな帳票,大量生産モードの準備はできたぞな(;´Д`)ハァハァ