Code Monkey home page Code Monkey logo

Comments (4)

PrzemyslawKlys avatar PrzemyslawKlys commented on June 16, 2024 1

So in OfficeIMO the paragraph is actually a Run. That means when you do AddText it creates a run, but this is a WordParagraph. Using AddParagraph forces it to do one Paragraph, with one Run kinda.

So if you want you can do

p1 = p1.AddText("xxx")
p1.Italic = true;
p1 = p1.AddText("xxx2)
p1.Italic = false;

and it will give you what you want. You can also save them to seaprate variables. OfficeIMO has only a single concept of WordParagraph trying to simplify the OpenXML model. 

from officeimo.

PrzemyslawKlys avatar PrzemyslawKlys commented on June 16, 2024 1

For example

 var paragraph = document.AddParagraph("Adding paragraph with some text with special chars to check if FontFamily works correctly for those");

                paragraph.Color = SixLabors.ImageSharp.Color.Red;

                // this is only a test of setting FontFamily per paragraph. Please use document.Settings.FontFamily to set it per document.
                paragraph = document.AddParagraph("Wszedł kot do domu, gdzie były różne buty. ");
                paragraph.FontFamily = "Courier New";
                paragraph = paragraph.AddText("Chodził tak sobie i chodził, i się nachodził. ");
                paragraph.FontFamily = "Courier New";
                paragraph = paragraph.AddText("A potem jeszcze pochodził, i wąchał. A wszystko to nagrało życie. ");
                paragraph.FontFamily = "Courier New";

Look at the examples project - there are plenty of examples showing things

from officeimo.

PrzemyslawKlys avatar PrzemyslawKlys commented on June 16, 2024

p1.AddText(xxx).AddText(xxx) as far as i know

from officeimo.

charliestel avatar charliestel commented on June 16, 2024

p1.AddText(xxx).AddText(xxx) as far as i know

AddText method is just concating text in current paragraph. But i wanna split text areas and having separated styles for them

from officeimo.

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.