איך להוסיף שורות לטבלה במסמך MS Word באמצעות C#

איך להוסיף שורות לטבלה במסמך MS Word באמצעות C#

In this tutorial, you’ll learn how to programmatically add rows to a table in an MS Word document using C#. You’ll add rows at a specified index and insert multiple empty rows at the end of the table.

יתרונות הוספת שורות לטבלאות במסמכי Word

  1. ניהול תוכן דינמי:
    • שנו בקלות טבלאות קיימות כדי להתאים לנתונים חדשים.
  2. גמישות:
    • התאימו מבני טבלה בצורה תכנותית ללא עריכות ידניות.
  3. אוטומציה:
    • ניהול יעיל של נתוני טבלה באמצעות סקריפטים אוטומטיים.

דרישות מוקדמות: הכנת הסביבה

  1. התקינו את Visual Studio או כל IDE של .NET.
  2. ודאו שספריית Aspose.Words זמינה דרך NuGet.

מדריך שלב אחר שלב להוספת שורות לטבלה ב-Word

שלב 1: התקנת ספריית Aspose.Words

התקינו את חבילת Aspose.Words באמצעות מנהל החבילות NuGet.

Install-Package Aspose.Words

שלב 2: ייבוא של שמות מרחבים נחוצים

כללו את שמות המרחבים Aspose.Words ו-Aspose.Words.Tables בפרויקט שלכם.

using Aspose.Words;
using Aspose.Words.Tables;

שלב 3: פתחו את מסמך ה-Word

טענו את מסמך ה-MS Word הקיים.

Document MSWordDocument = new Document(@"MS Word.docx");

שלב 4: גישה לטבלה

קבלו את הטבלה לפי האינדקס שלה מהמסמך.

Table tableToAddRowsTo = MSWordDocument.FirstSection.Body.Tables[0];

שלב 5: צרו או שכפלו שורה

צרו שורה חדשה או שכפלו שורה קיימת מהטבלה.

Row row = new Row(MSWordDocument);

שלב 6: הוספת תאים לשורה

הוסיפו תאים וטקסט לשורה.

for (int i = 0; i < 3; i++) 
{
    Cell cell = new Cell(MSWordDocument);
    cell.AppendChild(new Paragraph(MSWordDocument));
    cell.FirstParagraph.Runs.Add(new Run(MSWordDocument, "Text in Cell " + i));
    row.Cells.Add(cell);
}

שלב 7: הוספת שורות לסוף

השתמשו ב-RowCollection.Add כדי להוסיף שורות לטבלה.

tableToAddRowsTo.Rows.Add(row);

שלב 8: הכנס שורות באינדקס ספציפי

הכניסו שורות באינדקס ספציפי באמצעות RowCollection.Insert.

tableToAddRowsTo.Rows.Insert(1, row);

שלב 9: שמרו את המסמך המעודכן

שמרו מחדש את המסמך עם השורות שהוספו.

MSWordDocument.Save(@"Added Rows to Table in MS Word.docx");

קוד דוגמה להוספת שורות לטבלה ב-Word

להלן הקוד המלא להוספת שורות לטבלה:

// Open MS Word Document
Document MSWordDocument = new Document(@"input.docx");

// Get the Table by index
Table tableToAddRowsTo = MSWordDocument.FirstSection.Body.Tables[0];

// Create a new Row class object
Row row = new Row(MSWordDocument);

// Add three Cells to Row's cells collection
for (int i = 0; i < 3; i++)
{
    Cell cell = new Cell(MSWordDocument);
    cell.AppendChild(new Paragraph(MSWordDocument));
    cell.FirstParagraph.Runs.Add(new Run(MSWordDocument, "Text in Cell " + i));
    row.Cells.Add(cell);
}

// Insert new Row after the first Row
tableToAddRowsTo.Rows.Insert(1, row);

// Clone an existing Row from Table
Row cloneOfRow = (Row)tableToAddRowsTo.FirstRow.Clone(true);

// Remove all content from all Cells
foreach (Cell cell in cloneOfRow)
{
    cell.RemoveAllChildren();
    cell.EnsureMinimum();
}

// Add multiple empty rows to the end of table
for (int i = 0; i < 10; i++)
{
    Row emptyRow = (Row)cloneOfRow.Clone(true);
    tableToAddRowsTo.Rows.Add(emptyRow);
}

// Save updated document
MSWordDocument.Save(@"output.docx");

סיכום

מדריך זה הדגים כיצד להוסיף שורות לטבלה במסמך MS Word באמצעות C#. על ידי ביצוע שלבים אלו, תוכלו לנהל ולשנות טבלאות במסמכי Word בצורה תכנותית.

 Ελληνικά