PHP код:
static void TestExcel(Args _args)
{
COM app=new COM("Excel.Application");
COM wbs=app.WorkBooks();
COM wb=wbs.Add();
COM sheet=wb.ActiveSheet();
COM cell=sheet.Range("A1");
COMVariant height;
;
height=cell.RowHeight();
info(strFmt("%1", height.double()));
app.Visible(true);
}