Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Description

Excerpt

Returns an int representing the number of paragraphs in this document.

Signature
C#
C#
public int NumParagraphs{ get; }
{signature}{signature:
}
Signature
vb.net
vb.net
Public ReadOnly Property NumParagraphs() As Integer
{signature}
{remarks}MS Word 
Remarks

MS Word equivalent:

File

menu

>

Properties

>

Statistics

tab

>

Statistics

listbox

>

Paragraphs:

{remarks} {example}{code:csharp|title=C#}

Example
Code Block
csharp
csharp
titleC#
          
int numParagraphs = oDocument.NumParagraphs;
        
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}
          
Dim numParagraphs As Integer = oDocument.NumParagraphs
        
{code} {example}