Чтобы выделить только часть текста, выделенную жирным шрифтом, вы захотите управлять этим, вставив текст в SharedStringTable
и сделав тип данных вашей ячейки равным SharedString
, а не InlineString
.Это сделает CellValue ссылкой на эту таблицу, например 0, 1, 2 и т. Д., И даст больше контроля, чем выполнение встроенной строки.
Вот пример кода о том, как сделать вторую частьфраза «Обычный текст ... полужирный текст ...» полужирный:
// Creates an SharedStringItem instance and adds its children.
public SharedStringItem GenerateSharedStringItem()
{
SharedStringItem sharedStringItem1 = new SharedStringItem();
Run run1 = new Run();
Text text1 = new Text(){ Space = SpaceProcessingModeValues.Preserve };
text1.Text = "Normal text… ";
run1.Append(text1);
Run run2 = new Run();
RunProperties runProperties1 = new RunProperties();
Bold bold1 = new Bold();
FontSize fontSize1 = new FontSize(){ Val = 11D };
Color color1 = new Color(){ Theme = (UInt32Value)1U };
RunFont runFont1 = new RunFont(){ Val = "Calibri" };
FontFamily fontFamily1 = new FontFamily(){ Val = 2 };
FontScheme fontScheme1 = new FontScheme(){ Val = FontSchemeValues.Minor };
runProperties1.Append(bold1);
runProperties1.Append(fontSize1);
runProperties1.Append(color1);
runProperties1.Append(runFont1);
runProperties1.Append(fontFamily1);
runProperties1.Append(fontScheme1);
Text text2 = new Text();
text2.Text = "bold text…";
run2.Append(runProperties1);
run2.Append(text2);
sharedStringItem1.Append(run1);
sharedStringItem1.Append(run2);
return sharedStringItem1;
}
Чтобы использовать этот метод, вы хотите сначала найти экземпляр SharedStringTable
, а затем вставить свой новый ShareStringItem
вэто:
using (MemoryStream stream = new MemoryStream())
{
// create in-memory copy of the Excel template file
byte[] byteArray = File.ReadAllBytes(TEMPLATE_FILE_NAME);
stream.Write(byteArray, 0, (int)byteArray.Length);
using (SpreadsheetDocument document = SpreadsheetDocument.Open(stream, true))
{
// Set private variable template component references (for reuse between methods)
mExcelWorkbookPart = document.WorkbookPart;
mSharedStringTablePart = mExcelWorkbookPart.SharedStringTablePart;
mSharedStringTablePart.SharedStringTable.AppendChild(GenerateSharedStringItem());
}
return stream.ToArray();
}