Table.Split Method
Inserts an empty paragraph immediately above the specified row in the table, and returns a Table object that contains both the specified row and the rows that follow it.
Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in Microsoft.Office.Interop.Word.dll)
Syntax
'Declaration
Function Split ( _
ByRef BeforeRow As Object _
) As Table
'Usage
Dim instance As Table
Dim BeforeRow As Object
Dim returnValue As Table
returnValue = instance.Split(BeforeRow)
Table Split(
ref Object BeforeRow
)
Parameters
- BeforeRow
Type: System.Object%
Required Object. The row that the table is to be split before. Can be a row number or a Row object.
Return Value
Type: Microsoft.Office.Interop.Word.Table