Hi
Thanks for your request. I think that you should use HeightRule.Exactly. For example see the following code.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
//Set size of cell
builder.RowFormat.Height = 15;
builder.CellFormat.Width = 50;
//Set height rule
builder.RowFormat.HeightRule = HeightRule.Exactly;
//insert cell
builder.InsertCell();
//Insert text into the cell
builder.Write("some text inside cell");
builder.EndRow();
builder.EndTable();
//Save document
doc.Save(@"Test169\out.doc");
Hope this helps.
Best regards.
Alexey Noskov
Developer/Technical Support
Aspose Auckland Team