Returns a cell by its position in the current row.
Name | Type | Description |
nPos | number | The cell position in the table row. |
builder.CreateFile("pptx"); var oPresentation = Api.GetPresentation(); var oTable = Api.CreateTable(2, 4); var oRow = oTable.GetRow(0); var oCell = oRow.GetCell(0); var oContent = oCell.GetContent(); var oParagraph = Api.CreateParagraph(); oParagraph.AddText("This is a sample text in the cell of the first row."); oContent.Push(oParagraph); var oSlide = oPresentation.GetSlideByIndex(0); oSlide.RemoveAllObjects(); oSlide.AddObject(oTable); builder.SaveFile("pptx", "GetCell.pptx"); builder.CloseFile();