简体   繁体   English

使用c#在一个单元格中使用多种格式

[英]Multiple Formats in one cell using c#

I want to have mutple format types in one cell in my workbook. 我想在我的工作簿中的一个单元格中使用mutple格式类型。 For example I want my A1 cell to display " Name: Aaron Kruger ". 例如,我希望我的A1单元格显示“ Name: Aaron Kruger”。 When I programmatically add the name "Aaron Kruger" to the template, it automatically makes it bold. 当我以编程方式将名称“Aaron Kruger”添加到模板时,它会自动将其设置为粗体。 So instead it looks like this " Name:Aaron Kruger ". 所以它看起来像这个“ 名字:Aaron Kruger ”。 So I want Bold and non-bold both in the same cell. 所以我想在同一个单元格中加粗和非粗体。 And maybe in the future I will want two different text sizes in the same cell. 也许在将来我会想要在同一个单元格中有两种不同的文本大小。 Thanks, Aaron Kruger 谢谢,Aaron Kruger

Here is the function I created: 这是我创建的函数:

    public void inputData(int row, int column, string cellName, System.Windows.Forms.TextBox textBox, Excel.Worksheet sheet)
    {
        sheet.Cells[row, column] = sheet.get_Range(cellName, Type.Missing).Text + " " + textBox.Text; // adds value to sheet
    }

Here are the arguments I pass in: 以下是我传递的参数:

        inputData(5, 1, "A5", tbTagNumber, xlSheet);
        inputData(6, 1, "A6", tbCustomer, xlSheet);
        inputData(7, 1, "A5", tbDataFile, xlSheet);
        inputData(3, 6, "F3", tbJobNumber, xlSheet);
        inputData(4, 6, "F4", tbMeterSN, xlSheet);
        inputData(6, 6, "F6", tbPO, xlSheet);
        inputData(7, 6, "F7", tbFlowplate, xlSheet);
        inputData(4, 9, "I4", tbElectronicSN, xlSheet);
Range rng1 = ws.getRange("A1","E10");
for(int i=0;i<10;i++)
{
    Range rngTst=rng.cells[i,i];
    for(int j=0;j<rngTst.get_characters().count;j++)
    {
        rngTst.application.activecell.get_characters(j,j).font.color
    }
}

or 要么

int sFirstFoundAddress = currentFind.FormulaR1C1Local.ToString().IndexOf("NOT FOR CIRCULATION ");

get_Range(excel.Cells[1, 1],
    excel.Cells[1, dtData.Columns.Count])
        .get_Characters(sFirstFoundAddress, 20).Font.Color =
            System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Red);

Use Microsoft.Office.Interop.Excel.Range which gives you each character as Characters type. 使用Microsoft.Office.Interop.Excel.Range ,它将每个字符作为字符类型。 Now use its Font and other properties to style them. 现在使用其Font和其他属性来设置它们的样式。

Refer an example here: http://www.bloodforge.com/post/Extract-Formatted-Text-From-Excel-Cell-With-C.aspx 请参考此处的示例: http//www.bloodforge.com/post/Extract-Formatted-Text-From-Excel-Cell-With-C.aspx

 Microsoft.Office.Interop.Excel.Range Range = (Microsoft.Office.Interop.Excel.Range)Cell;
   int TextLength = Range.Text.ToString().Length;
   for (int CharCount = 1; CharCount <= TextLength; CharCount++)
   {
       Microsoft.Office.Interop.Excel.Characters charToTest = Range.get_Characters(CharCount, 1);
       bool IsBold = (bool)charToTest.Font.Bold;
       bool IsItalic = (bool)charToTest.Font.Italic;
       // other formatting tests here

   }

I recorded a macro, it shouldn't be hard to translate it to C#: 我录制了一个宏,将它翻译成C#应该不难:

ActiveCell.FormulaR1C1 = "Test test"
Range("A1").Select
ActiveCell.FormulaR1C1 = "Test test"
With ActiveCell.Characters(Start:=1, Length:=5).Font
    .Name = "Calibri"
    .FontStyle = "Regular"
    .Size = 11
    .Strikethrough = False
    .Superscript = False
    .Subscript = False
    .OutlineFont = False
    .Shadow = False
    .Underline = xlUnderlineStyleNone
    .ThemeColor = xlThemeColorLight1
    .TintAndShade = 0
    .ThemeFont = xlThemeFontMinor
End With
With ActiveCell.Characters(Start:=6, Length:=4).Font
    .Name = "Calibri"
    .FontStyle = "Bold"
    .Size = 11
    .Strikethrough = False
    .Superscript = False
    .Subscript = False
    .OutlineFont = False
    .Shadow = False
    .Underline = xlUnderlineStyleNone
    .ThemeColor = xlThemeColorLight1
    .TintAndShade = 0
    .ThemeFont = xlThemeFontMinor
End With

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM