Coder Social home page Coder Social logo

Comments (3)

github-actions avatar github-actions commented on September 26, 2024

Welcome! Thanks for posting your first issue. The way things work here is that while customer issues are prioritized,
other issues go into our backlog where they are assessed and fitted into the roadmap when suitable.
If you need to get this done, consider buying a license which also enables you to use it in your commercial products.
More information can be found on https://unidoc.io/

from unioffice.

sampila avatar sampila commented on September 26, 2024

Hi @knight-ni,

Probably you can try out this code and see if this code help

// Copyright 2022 UniDoc ehf. All rights reserved.
package main

import (
	"fmt"
	"os"

	"github.com/unidoc/unioffice/common/license"
	"github.com/unidoc/unioffice/document"
	"github.com/unidoc/unioffice/measurement"
	"github.com/unidoc/unioffice/schema/soo/wml"
)

func init() {
	// Make sure to load your metered License API key prior to using the library.
	// If you need a key, you can sign up and create a free one at https://cloud.unidoc.io
	err := license.SetMeteredKey(os.Getenv(`UNIDOC_LICENSE_API_KEY`))
	if err != nil {
		panic(err)
	}
}

var mapList = []map[string][]string{
	map[string][]string{"Preferred programming language": []string{"Go", "Java", "PHP"}},
	map[string][]string{"Which sport you love to play": []string{"Football", "Basketball", "Diving"}},
	map[string][]string{"Another information": []string{"This A", "This B", "This C"}},
}

func main() {
	doc := document.New()
	defer doc.Close()

	// Create numbering definition.
	nd := doc.Numbering.AddDefinition()

	// Add level to number definition with decimal format.
	lvl := nd.AddLevel()
	lvl.SetFormat(wml.ST_NumberFormatDecimal)
	lvl.SetAlignment(wml.ST_JcLeft)
	lvl.Properties().SetLeftIndent(0.5 * measurement.Distance(1) * measurement.Inch)

	// Sets the numbering level format.
	lvl.SetText("%1.")

	for i := 0; i < len(mapList); i++ {
		for key, val := range mapList[i] {
			para := doc.AddParagraph()
			para.SetNumberingDefinition(nd)
			para.SetNumberingLevel(0)
			para.AddRun().AddText(key)

			// Add level to previous number definition.
			lvl := nd.AddLevel()
			lvl.SetFormat(wml.ST_NumberFormatDecimal)
			lvl.SetAlignment(wml.ST_JcLeft)
			lvl.Properties().SetLeftIndent(0.5 * measurement.Distance(2) * measurement.Inch)

			// Sets the numbering level format.
			lvl.SetText("%1.%2")

			for i := 0; i < len(val); i++ {
				para := doc.AddParagraph()
				para.SetNumberingDefinition(nd)
				para.SetNumberingLevel(1)
				para.AddRun().AddText(val[i])

				// Add more nested numbering.
				if i == 0 && key == "Another information" {
					// Create children numbering definition.
					ndChild := doc.Numbering.AddDefinition()

					// Add level to number definition with upper letter format.
					lvl := ndChild.AddLevel()
					lvl.SetFormat(wml.ST_NumberFormatUpperLetter)
					lvl.SetAlignment(wml.ST_JcLeft)
					lvl.Properties().SetLeftIndent(0.5 * measurement.Distance(3) * measurement.Inch)

					// Sets the numbering level format.
					lvl.SetText("%1.)")
					for i := 1; i < 5; i++ {
						p := doc.AddParagraph()
						p.SetNumberingLevel(0)
						p.SetNumberingDefinition(ndChild)
						run := p.AddRun()
						run.AddText(fmt.Sprintf("More Level %d", i))
					}
				}
			}
		}
	}

	doc.SaveToFile("paragraph-numbering.docx")
}

Best regards,
Alip

from unioffice.

sampila avatar sampila commented on September 26, 2024

Hi @knight-ni,

We closing this issue, feel free to re-open this issue if this not resolved yet.

Best regards,
Alip

from unioffice.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.