Word import

A

Andrey Dzizenko

Hi!

I try to parse MSWord-formatted file.
As far as I know there're documents and paragraphs in the Word object
model.
My trouble is to split paragraphs by pages. A document has a property
PageSetup.PageHeight, but how can I see paragraph's height? Ain't I blind?
:)

Thank you in advance,
A. Dzizenko.
 
A

Andrey Dzizenko

I've found it.

document.Paragraphs.Range.get_Information(Word.WdInformation.wdActiveEndPageNumber)
 
Top