SetHeight
function SetHeight(nValue: EMU = null): void
Description
Sets the height to the current table row.
Parameters
The row height in English measure units.
Returns
void
Try It
var oPresentation = Api.GetPresentation();
var oTable = Api.CreateTable(2, 4);
var oRow = oTable.GetRow(0);
oRow.SetHeight(30 * 36000);
var oSlide = oPresentation.GetSlideByIndex(0);
oSlide.RemoveAllObjects();
oSlide.AddObject(oTable);