-
-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to add paragraph without pagebreak? #216
Comments
|
|
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. |
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 |
Hi, can anyone tell me how to insert multiple paragraphs into a document without a new line break?
Why I need this: to format parts of lines.
For example:
The text was updated successfully, but these errors were encountered: