How can I insert an Blank Line using a Open XML SDK class
I want format my .doc file, because when I retrive information and save in a .doc format using Open XML SDK, the document with all information is just in one line, and I need some information in other lines, just to format.
How can I 开发者_开发问答do that?
This is my method that build an .doc
private static void BuildDocument(string fileName, string id, string conteudo)
{
Utilidade.QuebraToken tk2 = new Utilidade.QuebraToken();
////id = id.Remove(id.Length - 1);
string select3 = "SELECT San_Imovel.TextoAnuncio, San_Imovel.Filial_Id, San_Imovel.NomeBairro,San_Imovel.TipoDsc1,San_Imovel.Imovel_Id,San_Filial.NomeFantasia ,San_ContatoFilial.Contato " +
"FROM San_Imovel " +
"JOIN San_Filial ON San_Imovel.Filial_Id = San_Filial.Filial_id " +
"JOIN San_ContatoFilial ON San_Filial.Filial_Id = San_ContatoFilial.Filial_Id " +
"WHERE Imovel_Id IN (" + id + ") " +
" AND San_ContatoFilial.TipoContatoFilial_Id = 1";
using (WordprocessingDocument w = WordprocessingDocument.Create(fileName, WordprocessingDocumentType.Document))
{
MainDocumentPart mp = w.AddMainDocumentPart();
DocumentFormat.OpenXml.Wordprocessing.Document d = new DocumentFormat.OpenXml.Wordprocessing.Document();
Body b = new Body();
DocumentFormat.OpenXml.Wordprocessing.Paragraph p = new DocumentFormat.OpenXml.Wordprocessing.Paragraph();
Run r = new Run();
Text t = new Text();
t.Text = conteudo;
r.Append(t);
p.Append(r);
b.Append(p);
HeaderPart hp = mp.AddNewPart<HeaderPart>();
string headerRelationshipID = mp.GetIdOfPart(hp);
SectionProperties sectPr = new SectionProperties();
HeaderReference headerReference = new HeaderReference();
headerReference.Id = headerRelationshipID;
headerReference.Type = HeaderFooterValues.Default;
sectPr.Append(headerReference);
b.Append(sectPr);
d.Append(b);
hp.Header = BuildHeader(hp, "Anuncio");
hp.Header.Save();
mp.Document = d;
mp.Document.Save();
w.Close();
}
}
And here, I call this method
public static object GerarDoc(string id, string email, string veiculo)
{
try
{
id = id.Remove(id.Length - 1);
string conteudo = string.Empty;
string select3 = "SELECT San_Imovel.TextoAnuncio, San_Imovel.Filial_Id, San_Imovel.NomeBairro,San_Imovel.TipoDsc1,San_Imovel.Imovel_Id,San_Filial.NomeFantasia ,San_ContatoFilial.Contato " +
"FROM San_Imovel " +
"INNER JOIN San_Filial ON San_Imovel.Filial_Id = San_Filial.Filial_id " +
"INNER JOIN San_ContatoFilial ON San_Filial.Filial_Id = San_ContatoFilial.Filial_Id " +
"WHERE Imovel_Id IN (" + id + ") " +
"AND San_ContatoFilial.TipoContatoFilial_Id = 1 ";
Utilidade.Conexao c3 = new Utilidade.Conexao();
SqlConnection con3 = new SqlConnection(c3.Con);
SqlCommand cmd3 = new SqlCommand(select3, con3);
con3.Open();
SqlDataReader r3 = cmd3.ExecuteReader();
while (r3.Read())
{
conteudo = conteudo + "" + (r3["Contato"]) + "";
conteudo = conteudo + "\n"+ (r3["NomeBairro"]);
conteudo = conteudo + "\n" + (r3["TipoDsc1"]) ;
conteudo = conteudo + "\n" + (r3["NomeFantasia"]) + " (" + (r3["Imovel_Id"]) + ") " + (r3["TextoAnuncio"]) + "\n\n";
}
con3.Close();
Random rnd = new Random (DateTime.Now.Millisecond);
string NomeArquivo = "Anuncio_" + Credenciada + "_" + Usuario + "_" + rnd.Next().ToString();
rng.Font.Name = "Arial";
rng.Text = conteudo;
BuildDocument(@"C:\inetpub\wwwroot\galileu.redenetimoveis.com\Anuncios\" + NomeArquivo + ".doc", id, rng.Text);
retorno = "1";
}
}
You can simply create a run with a break object in it and insert this run in your code everytime a page break is required, please see below for an example:
using (WordprocessingDocument package = WordprocessingDocument.Create("D:\\LineBreaks.docx", WordprocessingDocumentType.Document))
{
package.AddMainDocumentPart();
Run run1 = new Run();
Text text1 = new Text("The quick brown fox");
run1.Append(text1);
Run lineBreak = new Run(new Break());
Run run2 = new Run();
Text text2 = new Text("jumps over a lazy dog");
run2.Append(text2);
Paragraph paragraph = new Paragraph();
paragraph.Append(new OpenXmlElement[] { run1, lineBreak, run2 });
Body body = new Body();
body.Append(paragraph);
package.MainDocumentPart.Document = new Document(new Body(body));
}
Create your desired document manually and then reflect it Using Open XML productivity tool. so you can find what you need to do.
精彩评论