Hi,
I am using Aspose.words to read the document. I need to figure out if the current paragraph, which I am in, is a Cell of a Table or not. Can you please give me a code or point me to a document that can show me how can I defrienciate between regular text and text in a table?
Here is a blue print what I want to do:
Public Overrides Function VisitParagraphStart(ByVal paragraph As Aspose.Words.Paragraph) As Aspose.Words.VisitorAction
‘Here I need to Know If This Paragraph is a Cell of a Table Or Not…
‘Because I am saving Tables in my VisitTableStart function.
Return VisitorAction.Continue
End Function
Thanks very much in advance!
Jerry