Spire.Doc is a professional Word .NET library specifically designed for developers to create, read, write, convert and print Word document files. Get free and professional technical support for Spire.Doc for .NET, Java, Android, C++, Python.

Tue Dec 24, 2024 4:10 pm

Hi,
Is there option to select checkbox in SpireDoc for Java 12.6.2?
space.jpg

Thnaks,
Andrey

andrei.chorin
 
Posts: 68
Joined: Sun Jan 08, 2023 2:36 pm

Wed Dec 25, 2024 3:48 am

Hello Andrey,

Thank you for your inquiry.

The feature you request is currently under development. The corresponding task ID is SPIREDOC-11038. Upon completion, we will release a new version and notify you promptly.

We greatly appreciate your support.

Sincerely,
Amy
E-iceblue support team
User avatar

amy.zhao
 
Posts: 3008
Joined: Wed Jun 27, 2012 8:50 am

Fri Jan 17, 2025 8:44 am

Hello,

Thank you for your patience.

I'm glad to inform you that SPIREDOC-11038 feature has been finished. Welcome to download and test [Spire.Doc for Java Version:13.1.3].
Our website link:https://www.e-iceblue.com/Download/doc-for-java.htmll
Install from Maven Repository:
Code: Select all
<repositories>
    <repository>
        <id>com.e-iceblue</id>
        <name>e-iceblue</name>
        <url>https://repo.e-iceblue.com/nexus/content/groups/public/</url>
    </repository>
</repositories>
<dependency>
    <groupId>e-iceblue</groupId>
    <artifactId>spire.doc</artifactId>
    <version>13.1.3</version>
</dependency>

Sample code:
Code: Select all
        Document doc = ConvertUtil.GetNewEngineDocument(inputFile);
        for (int i= 0; i <doc.getSections().get(0).getParagraphs().getCount(); i++)
        {
            Paragraph para = doc.getSections().get(0).getParagraphs().get(i);
            para.getFormat().setNoSpaceBetweenParagraphsOfSameStyle(true);
        }
        doc.saveToFile(outputFile, FileFormat.Docx);
        doc.dispose();


If you have any questions, please let us know.

Sincerely,
Amy
E-iceblue support team
User avatar

amy.zhao
 
Posts: 3008
Joined: Wed Jun 27, 2012 8:50 am

Return to Spire.Doc