As near as I can ascertain using the Word UDF the paragraph count does not count the numbered paragraphs in a document but counts something like all paragraphs (numbered , un-numbered, indented) minus empty lines. Is there any easy way of getting the first level numbered paragraph numbers? You'll see in my test document there are just 7 numbered paragraphs.
#include <Word.au3>
#include <Array.au3>
Local $oWord = _Word_Create()
Local $sDocument = @MyDocumentsDir & "\test.docx"
Local $oDoc = _Word_DocOpen($oWord, $sDocument, Default, Default, True)
$oRange = $oDoc.Range
$sText = $oRange.Text
$aLines = StringSplit($sText, @CR)
_ArrayDisplay($aLines)
$wdPropertyParas = 24
$sParas = $oDoc.BuiltInDocumentProperties($wdPropertyParas).Value
$sParas = $sParas
ConsoleWrite($sParas & @CRLF)
test.docx