GetNext

GetNext()+++spitableRow......

返回下一行如果存在

参数:

这种方法没有任何参数

返回时间 :

类型
spitableRow空区

实例

拷贝代码
builder.CreateFile("docx")!varoDocuments=api.GetDocumentvar表Style=ODocument.CreateStyleoTableStyle.SetBasedOn(oDocument.GetStyle("Bordered"))!varo表=api.Criate表(3,3)oTable.SetStyle(oTableStyle)!varoRow=otable.getRow0oRow.GetCell(0).GetContent().GetElement(0).AddText("First row")!oRow.GetNext().GetCell(0).GetContent().GetElement(0).AddText("Second row")!oDocument.Push(oTable)!builder.SaveFile("docx", "GetNext.docx")!builder.CloseFile();

结果文档