14-07-22 05:19 PM
14-07-22 08:26 PM
Dim doc as Object = GetDocument(handle,documentname)
Dim range As Object
Dim Para As Paragraph
For Each Para In ActiveDocument.Paragraphs
If Para.Range.ListFormat.ListType = wdListBullet Then
'do something
End If
Next Para
14-07-22 09:55 PM
Thank you @Pablo Sarabia! I was created this custom action within the Microsoft Word VBO as you mentioned. This is what my configuration looks like in the Word VBO:
I believe this matches your picture, correct? Or is there anything else I need to change within this configuration? Also, I'm using Word 2010. Perhaps this interop dll is not compatible with Word 2010?
14-07-22 10:18 PM
14-07-22 10:28 PM
15-07-22 01:10 AM
Dim Para As Microsoft.Office.Interop.Word.Paragraph
15-07-22 02:01 AM
15-07-22 03:41 AM
result = Para.Range.Text
15-07-22 03:24 PM
15-07-22 05:45 PM
Section 1 - Header
Bullet 1
Bullet 2
Bullet 3
Section 2 - Header
I would like to get the bullet point text only between section 1 and section 2 of the document, but the section 1 and section 2 may be in a different range within each document I need to process, but their sections headings/titles will always be the same.