Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5969759
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T20:16:35+00:00 2026-05-22T20:16:35+00:00

I want to detect Empty paragraphs in Word Document using Microsoft.Office.Interop.Word. Suppose, if my

  • 0

I want to detect Empty paragraphs in Word Document using Microsoft.Office.Interop.Word.
Suppose, if my word document have some empty paragraphs,then

Assume paragraph 3 is an empty paragraph…

Microsoft.Office.Interop.Word.Paragraph para = wordDoc.Content.Paragraphs[3];
int cSent = para.Range.Sentences.Count;

for (int j = 1; j <= cSent; j++)
{
 Microsoft.Office.Interop.Word.Range sent = para.Range.Sentences[j];
 MessageBox.Show("Sent lines :" + sent.Text.ToString());
}

Then empty paragraphs has taken the last sentence of the last non-empty paragraph.So, I can’t able to detect empty paragraphs in my Word Document.

Is there a way to get Empty paragraph list?

Please Guide me to Get out of this problem…

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T20:16:36+00:00Added an answer on May 22, 2026 at 8:16 pm

    Well, first, you may need to iterate through all the headers and footers of all sections if you also want to look for empty paras in those headers/footers.

    Second, something like this should work

    for each p in Doc.Content.Paragraphs
        if (p.Range.End - p.Range.Start) > 1 then (The paragraph is not empty)
    Next
    

    You may need to play with that “1” number, because I can’t recall where Word sets the start and end points, empty paragraphs may be 2 chars long from start to end, not just one.

    You can also do things like

    p.Range.Sentences.Count > 0
    

    or

    p.Range.Characters.Count > 0
    

    But those techniques are typically slower than checking the start and end positions.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to detect if this text field is empty or not and then
I want to detect the presence of a scroll bar in a DIV using
I want to detect when the document has just started to load, so that
I have this problem. I want to detect if there is not a session
I have a VS addin in C#. I want detect if a solution is
I am using the Microsoft code here to learn how to detect IP addresses
I have some critical logic in a finally block (with an empty try block),
I have a project, which I want to detect objects in the images; my
i want to detect to see if an element was dragged out of container.
I want to detect when an include in a jsp occurs in a web

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.