Можно ли вставить фрагмент HTML в TableCell для WordProcessingDocument, созданного с помощью Open XML?
Например, когда я использую:
public void WriteWordFile()
{
var fileName = HttpContext.Current.Request.PhysicalApplicationPath + "/temp/" + HttpContext.Current.Session.SessionID + ".docx";
using (var wordDocument = WordprocessingDocument.Create(fileName, WordprocessingDocumentType.Document, true))
{
var mainPart = wordDocument.AddMainDocumentPart();
mainPart.Document = new Document();
var body = mainPart.Document.AppendChild(new Body());
var table = new Table();
var tr = new TableRow();
var tc = new TableCell();
tc.Append(new Paragraph(new Run(new Text("1"))));
tr.Append(tc);
table.Append(tr);
body.Append(table);
}
Word документ печатает простую «1» без форматирования, как ожидалось.
Тем не менее, я хочу написать:
public void WriteWordFile()
{
var fileName = HttpContext.Current.Request.PhysicalApplicationPath + "/temp/" + HttpContext.Current.Session.SessionID + ".docx";
using (var wordDocument = WordprocessingDocument.Create(fileName, WordprocessingDocumentType.Document, true))
{
var mainPart = wordDocument.AddMainDocumentPart();
mainPart.Document = new Document();
var body = mainPart.Document.AppendChild(new Body());
var table = new Table();
var tr = new TableRow();
var tc = new TableCell();
tc.Append(new Paragraph(new Run(new Text("<span style=\"bold\">1</span>"))));
tr.Append(tc);
table.Append(tr);
body.Append(table);
}
}
Документ Word печатает разметку HTML <span style="bold">1</span>
"вместо жирного" 1".