I am using the following code to find a piece of text in a document
Dim xPattern As New Regex("~i:" & fieldIds(col) & ":[0-9]{1,3}~", RegexOptions.IgnoreCase)
Dim textSel As TextSelection = document.Find(xPattern)
Is there anyway to find out the horizontal alignment of the text found in the document using the statement above? I don't see a property for the textSel TextSelection object that will help.
Is there a better way to do this?