GetCell
Returns a cell by its position in the current row.
Parameters:
Name |
Type |
Description |
nPos |
number
|
The cell position in the table row. |
Returns:
- Type
-
ApiTableCell
Example
Copy code
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();
Resulting document