Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Parsing a Word doc with styles
Message
De
07/09/2006 14:28:52
 
 
À
07/09/2006 12:09:54
Elyse Pomerantz
Dynamic Data Concepts, Inc.
Brooklyn, New York, États-Unis
Information générale
Forum:
Visual FoxPro
Catégorie:
COM/DCOM et OLE Automation
Versions des environnements
Visual FoxPro:
VFP 8 SP1
Divers
Thread ID:
01151911
Message ID:
01152018
Vues:
18
>I have a highly-structured Word document that contains many Sections. The first line of every Section is a title with Style "Heading 1" (each section only has one line of "Heading 1"). In VFP I want to get a list of all my Sections by displaying all the lines of Style "Heading 1." (The user will then be able to choose which section(s) they want to print.) How can I do this with Word Automation?

First, if you really mean Sections in the way Word uses the term, you can simply loop through the Sections collection and pull out the first paragraph of each.

However, I think you're using the term "sections" less formally. So, you'll need to cycle through the Paragraphs collection and check the style of each.

FOR EACH oParagraph IN oDocument
IF oParagraph.Style = "Heading 1"
cText = oParagraph.Range().Text
* do something with cText
ENDIF
ENDFOR

This may be a little slow, so you might want to try using the Find object instead, and loop through the whole document that way.

Tamar
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform