0

ここに私のコード:

using Excel = Microsoft.Office.Interop.Excel;

private void button1_Click(object sender, EventArgs e)
{
    Excel.Application xlApp = new Excel.Application();
    Excel.Workbook wb = xlApp.Workbooks.Add(System.Type.Missing);
    Excel.Worksheet ws = (Excel.Worksheet)wb.Sheets[1];
    xlApp.Visible = true;

    Excel.Shape textBox = ws.Shapes.AddTextbox(
        Microsoft.Office.Core.MsoTextOrientation.msoTextOrientationHorizontal,
        10 + 10 + 10, 36, 600, 100);
    textBox.TextFrame.Characters(System.Type.Missing, System.Type.Missing).Text
        = "testing";

    xlApp.ActiveWindow.Activate();
    xlApp.UserControl = true;
    ws = null;
    wb = null;
    xlApp = null;
}

しかし、このコードでは、「testing」という 1 行のテキストしか追加できません。

---------------------------------
|Testing                        |
|                               |
|                               |
---------------------------------

次に、次のように 3 行のテキストを追加します。

---------------------------------
|Test1                          |
|Test2                          |
|Test3                          |
---------------------------------

誰か助けて?

4

1 に答える 1

2

System.Environment.NewLine3 つの文字列を分離するために探している定数である可能性があります。

于 2012-11-29T03:08:25.133 に答える