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 7966717
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T06:30:31+00:00 2026-06-04T06:30:31+00:00

Footnotes have numbering restart options. Numbering can be restarted from: page, section or can

  • 0

Footnotes have numbering restart options. Numbering can be restarted from: page, section or can be continuous.

How can I programmatically get numbering restart setting(s) for footnotes of an existing docx document.

Thank you for advices.

  • 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-06-04T06:30:33+00:00Added an answer on June 4, 2026 at 6:30 am

    The document wide footnote settings can be found in the DocumentSettingsPart.
    The releated class in the OpenXml SDK is called FootnoteDocumentWideProperties.

    The sample below reads the footnote numbering restart settings configured by the user:

    public static void ReadFootnoteNumberingRestartSettings()
    {
      using (WordprocessingDocument wordDoc = 
             WordprocessingDocument.Open(@"c:\temp\Doc1.docx", true)) 
      {
        FootnoteDocumentWideProperties fdwp = 
                 wordDoc.MainDocumentPart.DocumentSettingsPart.Settings.Elements<FootnoteDocumentWideProperties>().FirstOrDefault();
    
        if (fdwp == null)
        {
          Console.Out.WriteLine("No document wide footnote settings specified.");
          return;
        }
    
        if (fdwp.NumberingRestart == null)
        {
          Console.Out.WriteLine("No numbering restart settings specified.");
          return;
        }
    
        Console.Out.WriteLine("Numbering restart option: {0}", fdwp.NumberingRestart.Val);    
      }
    }
    
    static void Main(string[] args)
    {
      ReadFootnoteNumberingRestartSettings();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following XML: <FootNotes> <Line id=10306 reference=*></Line> <Line id=10308 reference=**></Line> <Line id=10309
I have the following problem: I would like to use footnotes together with the
I have a plain text email that contains superscripts relating to footnotes found later
I have implemented a basic page layout algorithm for footnote placement. Basically: Layout a
$('.footnote').clone().appendTo('#allfootnotes').append('<br>'); I have a bunch of .footnote elements all through the page, at the
I'm creating a site using jekyll.rb . I have a page called about.html: <div
We've written a plugin to the Xinha text editor to handle footnotes. You can
This is my Source-XML. It is originally a Word-ML which have been reduced to
So I have I think around 36,000 just to be safe, a number I
In my iPhone app, I have a UIWebView where I'm loading a local html.

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.