They are essentially paragraph marks. You can test this.
Make a new document with a table of 3 row / 3 columns. This equals 9 cells, correct.
Do NOT use Tools > Word Count. It lists the paragraphs as = 0.
In the ThisDocument code mode put in the following Sub.
Code:
Sub ParaCount()
MsgBox ActiveDocument.Paragraphs.Count
End Sub
This will display a count of 13. Why 13? Each cell has a separator (essentially a paragraph mark). Nine cells, so there is 9 paragraphs. Each row has that little circle thingie which marks the end of the row (and is also essentially a paragraph mark), so 3 more. Total is 12. Plus the paragraph mark that is at the end of all documents. Total = 13.
Word uses these paragraph marks to delineate between cells. Each cell can have its own style applied to it. Styles are applied to paragraphs.
Paragraph marks also represent the termination of range objects. For example, if you put the following into the above code, like this:
Code:
Sub ParaCount()
MsgBox ActiveDocument.Paragraphs.Count
ActiveDocument.Paragraphs(3).Range.Select
End Sub
It will display the messagebox with "13", then select the 3rd cell in the table - as it is paragraph #3.
Just rememebr this is a document with the mentioned table right at the beginning...so there are no paragraphs before the table. If there was, say, two paragraphs before the table, then the third cell/row 1 would be:
ActiveDocument.Paragraphs(5)
Gerry