Description
Returns anint
representing the number of paragraphs in this document.
C#
public int NumParagraphs{ get ; } |
vb.net
Public ReadOnly Property NumParagraphs() As Integer |
Remarks
MS Word equivalent: File menu > Properties > Statistics tab > Statistics listbox > Paragraphs:Examples
C#
int numParagraphs = oDocument.NumParagraphs; |
vb.net
Dim numParagraphs As Integer = oDocument.NumParagraphs |