2012-07-12 14 views
6

के साथ मौजूदा लोगों को स्थानांतरित करना मैं स्प्रेडशीट टेम्पलेट में डेटा जोड़ने के लिए ओपनएक्सएमएल एसडीके 2.0 का उपयोग कर रहा हूं लेकिन मैं एक समस्या में भाग गया (क्योंकि मैं उस दिन के लिए ओपनएक्सएमएल का उपयोग कर रहा हूं जो इतना कठिन नहीं है मानना)। मैं यह नहीं समझ सकता कि नए पंक्तियों को नीचे खींचने के दौरान नई पंक्तियों को कैसे दबाया जाए।नई पंक्तियां डालने और ओपनएक्सएमएल एसडीके 2.0

यहां मैं स्प्रेडशीट टेम्पलेट का उपयोग कर रहा हूं। अधिक सटीक होने के लिए, मैं जो हासिल करना चाहता हूं वह सफेद रंगीन पंक्तियों में डेटा जोड़ने के दौरान उन स्लेट रंगीन पंक्तियों को नीचे ले जाना है।

    sheetData.AppendChild(polaznikRow); 

: Creating Documents by Using the Open XML Format SDK 2.0 (Part 2 of 3)

enter image description here

मुझे विश्वास है कि पकड़ कोड के इस हिस्से में कहीं है -

कोड मैं वर्तमान में उपयोग कर रहा हूँ MSDN पर एक के समान है मैंने InsertAfter, InsertAt, आदि के साथ प्रयोग करने का भी प्रयास किया है। लेकिन बिना किसी सफलता के।

किसी भी मदद की सराहना की जाएगी।

उत्तर

12

यदि आप रिक्त वर्कशीट में नई पंक्तियां जोड़ रहे हैं तो ट्यूटोरियल में वह कोड काम करेगा। चूंकि आपके पास एक टेम्पलेट है जिसका उपयोग आप कर रहे हैं जिसमें पंक्तियां हैं, आपको अपनी वर्कशीट के बीच में पंक्ति जोड़ने के लिए बहुत अधिक काम करने की आवश्यकता होगी। पंक्ति में जोड़ने के लिए आपको बहुत ही कोड का उपयोग करने की आवश्यकता है, लेकिन फिर आपके द्वारा डाली गई पंक्ति के बाद आपको प्रत्येक पंक्ति की पंक्ति अनुक्रमणिका मैन्युअल रूप से अपडेट करनी होगी। आपको मर्ज किए गए सेल संदर्भ और हाइपरलिंक्स संदर्भों को भी अपडेट करना होगा। आपको और भी अपडेट करना होगा, लेकिन मुझे इन तीन चीजों से अधिक अपडेट नहीं करना पड़ा। इसके बाद यहां

 /// <summary> 
     /// Inserts a new row at the desired index. If one already exists, then it is 
     /// returned. If an insertRow is provided, then it is inserted into the desired 
     /// rowIndex 
     /// </summary> 
     /// <param name="rowIndex">Row Index</param> 
     /// <param name="worksheetPart">Worksheet Part</param> 
     /// <param name="insertRow">Row to insert</param> 
     /// <param name="isLastRow">Optional parameter - True, you can guarantee that this row is the last row (not replacing an existing last row) in the sheet to insert; false it is not</param> 
     /// <returns>Inserted Row</returns> 
     public static Row InsertRow(uint rowIndex, WorksheetPart worksheetPart, Row insertRow, bool isNewLastRow = false) 
     { 
      Worksheet worksheet = worksheetPart.Worksheet; 
      SheetData sheetData = worksheet.GetFirstChild<SheetData>(); 

      Row retRow = !isNewLastRow ? sheetData.Elements<Row>().FirstOrDefault(r => r.RowIndex == rowIndex) : null; 

      // If the worksheet does not contain a row with the specified row index, insert one. 
      if (retRow != null) 
      { 
       // if retRow is not null and we are inserting a new row, then move all existing rows down. 
       if (insertRow != null) 
       { 
        UpdateRowIndexes(worksheetPart, rowIndex, false); 
        UpdateMergedCellReferences(worksheetPart, rowIndex, false); 
        UpdateHyperlinkReferences(worksheetPart, rowIndex, false); 

        // actually insert the new row into the sheet 
        retRow = sheetData.InsertBefore(insertRow, retRow); // at this point, retRow still points to the row that had the insert rowIndex 

        string curIndex = retRow.RowIndex.ToString(); 
        string newIndex = rowIndex.ToString(); 

        foreach (Cell cell in retRow.Elements<Cell>()) 
        { 
         // Update the references for the rows cells. 
         cell.CellReference = new StringValue(cell.CellReference.Value.Replace(curIndex, newIndex)); 
        } 

        // Update the row index. 
        retRow.RowIndex = rowIndex; 
       } 
      } 
      else 
      { 
       // Row doesn't exist yet, shifting not needed. 
       // Rows must be in sequential order according to RowIndex. Determine where to insert the new row. 
       Row refRow = !isNewLastRow ? sheetData.Elements<Row>().FirstOrDefault(row => row.RowIndex > rowIndex) : null; 

       // use the insert row if it exists 
       retRow = insertRow ?? new Row() { RowIndex = rowIndex }; 

       IEnumerable<Cell> cellsInRow = retRow.Elements<Cell>(); 

       if (cellsInRow.Any()) 
       { 
        string curIndex = retRow.RowIndex.ToString(); 
        string newIndex = rowIndex.ToString(); 

        foreach (Cell cell in cellsInRow) 
        { 
         // Update the references for the rows cells. 
         cell.CellReference = new StringValue(cell.CellReference.Value.Replace(curIndex, newIndex)); 
        } 

        // Update the row index. 
        retRow.RowIndex = rowIndex; 
       } 

       sheetData.InsertBefore(retRow, refRow); 
      } 

      return retRow; 
     } 

पंक्ति सूचियों, हाइपरलिंक अद्यतन करने के लिए निम्नलिखित सहायक तरीकों रहे हैं, और कक्ष संदर्भ विलय कर दिया: एक पंक्ति सम्मिलित करने के लिए मुख्य विधि से नीचे है

/// <summary> 
    /// Updates all of the Row indexes and the child Cells' CellReferences whenever 
    /// a row is inserted or deleted. 
    /// </summary> 
    /// <param name="worksheetPart">Worksheet Part</param> 
    /// <param name="rowIndex">Row Index being inserted or deleted</param> 
    /// <param name="isDeletedRow">True if row was deleted, otherwise false</param> 
    private static void UpdateRowIndexes(WorksheetPart worksheetPart, uint rowIndex, bool isDeletedRow) 
    { 
     // Get all the rows in the worksheet with equal or higher row index values than the one being inserted/deleted for reindexing. 
     IEnumerable<Row> rows = worksheetPart.Worksheet.Descendants<Row>().Where(r => r.RowIndex.Value >= rowIndex); 

     foreach (Row row in rows) 
     { 
      uint newIndex = (isDeletedRow ? row.RowIndex - 1 : row.RowIndex + 1); 
      string curRowIndex = row.RowIndex.ToString(); 
      string newRowIndex = newIndex.ToString(); 

      foreach (Cell cell in row.Elements<Cell>()) 
      { 
       // Update the references for the rows cells. 
       cell.CellReference = new StringValue(cell.CellReference.Value.Replace(curRowIndex, newRowIndex)); 
      } 

      // Update the row index. 
      row.RowIndex = newIndex; 
     } 
    } 

     /// <summary> 
     /// Updates the MergedCelss reference whenever a new row is inserted or deleted. It will simply take the 
     /// row index and either increment or decrement the cell row index in the merged cell reference based on 
     /// if the row was inserted or deleted. 
     /// </summary> 
     /// <param name="worksheetPart">Worksheet Part</param> 
     /// <param name="rowIndex">Row Index being inserted or deleted</param> 
     /// <param name="isDeletedRow">True if row was deleted, otherwise false</param> 
     private static void UpdateMergedCellReferences(WorksheetPart worksheetPart, uint rowIndex, bool isDeletedRow) 
     { 
      if (worksheetPart.Worksheet.Elements<MergeCells>().Count() > 0) 
      { 
       MergeCells mergeCells = worksheetPart.Worksheet.Elements<MergeCells>().FirstOrDefault(); 

       if (mergeCells != null) 
       { 
        // Grab all the merged cells that have a merge cell row index reference equal to or greater than the row index passed in 
        List<MergeCell> mergeCellsList = mergeCells.Elements<MergeCell>().Where(r => r.Reference.HasValue) 
                        .Where(r => GetRowIndex(r.Reference.Value.Split(':').ElementAt(0)) >= rowIndex || 
                           GetRowIndex(r.Reference.Value.Split(':').ElementAt(1)) >= rowIndex).ToList(); 

        // Need to remove all merged cells that have a matching rowIndex when the row is deleted 
        if (isDeletedRow) 
        { 
         List<MergeCell> mergeCellsToDelete = mergeCellsList.Where(r => GetRowIndex(r.Reference.Value.Split(':').ElementAt(0)) == rowIndex || 
                         GetRowIndex(r.Reference.Value.Split(':').ElementAt(1)) == rowIndex).ToList(); 

         // Delete all the matching merged cells 
         foreach (MergeCell cellToDelete in mergeCellsToDelete) 
         { 
          cellToDelete.Remove(); 
         } 

         // Update the list to contain all merged cells greater than the deleted row index 
         mergeCellsList = mergeCells.Elements<MergeCell>().Where(r => r.Reference.HasValue) 
                     .Where(r => GetRowIndex(r.Reference.Value.Split(':').ElementAt(0)) > rowIndex || 
                        GetRowIndex(r.Reference.Value.Split(':').ElementAt(1)) > rowIndex).ToList(); 
        } 

        // Either increment or decrement the row index on the merged cell reference 
        foreach (MergeCell mergeCell in mergeCellsList) 
        { 
         string[] cellReference = mergeCell.Reference.Value.Split(':'); 

         if (GetRowIndex(cellReference.ElementAt(0)) >= rowIndex) 
         { 
          string columnName = GetColumnName(cellReference.ElementAt(0)); 
          cellReference[0] = isDeletedRow ? columnName + (GetRowIndex(cellReference.ElementAt(0)) - 1).ToString() : IncrementCellReference(cellReference.ElementAt(0), CellReferencePartEnum.Row); 
         } 

         if (GetRowIndex(cellReference.ElementAt(1)) >= rowIndex) 
         { 
          string columnName = GetColumnName(cellReference.ElementAt(1)); 
          cellReference[1] = isDeletedRow ? columnName + (GetRowIndex(cellReference.ElementAt(1)) - 1).ToString() : IncrementCellReference(cellReference.ElementAt(1), CellReferencePartEnum.Row); 
         } 

         mergeCell.Reference = new StringValue(cellReference[0] + ":" + cellReference[1]); 
        } 
       } 
      } 
     } 

     /// <summary> 
     /// Updates all hyperlinks in the worksheet when a row is inserted or deleted. 
     /// </summary> 
     /// <param name="worksheetPart">Worksheet Part</param> 
     /// <param name="rowIndex">Row Index being inserted or deleted</param> 
     /// <param name="isDeletedRow">True if row was deleted, otherwise false</param> 
     private static void UpdateHyperlinkReferences(WorksheetPart worksheetPart, uint rowIndex, bool isDeletedRow) 
     { 
      Hyperlinks hyperlinks = worksheetPart.Worksheet.Elements<Hyperlinks>().FirstOrDefault(); 

      if (hyperlinks != null) 
      { 
       Match hyperlinkRowIndexMatch; 
       uint hyperlinkRowIndex; 

       foreach (Hyperlink hyperlink in hyperlinks.Elements<Hyperlink>()) 
       { 
        hyperlinkRowIndexMatch = Regex.Match(hyperlink.Reference.Value, "[0-9]+"); 
        if (hyperlinkRowIndexMatch.Success && uint.TryParse(hyperlinkRowIndexMatch.Value, out hyperlinkRowIndex) && hyperlinkRowIndex >= rowIndex) 
        { 
         // if being deleted, hyperlink needs to be removed or moved up 
         if (isDeletedRow) 
         { 
          // if hyperlink is on the row being removed, remove it 
          if (hyperlinkRowIndex == rowIndex) 
          { 
           hyperlink.Remove(); 
          } 
          // else hyperlink needs to be moved up a row 
          else{ 
           hyperlink.Reference.Value = hyperlink.Reference.Value.Replace(hyperlinkRowIndexMatch.Value, (hyperlinkRowIndex - 1).ToString()); 

          } 
         } 
         // else row is being inserted, move hyperlink down 
         else 
         { 
          hyperlink.Reference.Value = hyperlink.Reference.Value.Replace(hyperlinkRowIndexMatch.Value, (hyperlinkRowIndex + 1).ToString()); 
         } 
        } 
       } 

       // Remove the hyperlinks collection if none remain 
       if (hyperlinks.Elements<Hyperlink>().Count() == 0) 
       { 
        hyperlinks.Remove(); 
       } 
      } 
     } 

     /// <summary> 
     /// Given a cell name, parses the specified cell to get the row index. 
     /// </summary> 
     /// <param name="cellReference">Address of the cell (ie. B2)</param> 
     /// <returns>Row Index (ie. 2)</returns> 
     public static uint GetRowIndex(string cellReference) 
     { 
      // Create a regular expression to match the row index portion the cell name. 
      Regex regex = new Regex(@"\d+"); 
      Match match = regex.Match(cellReference); 

      return uint.Parse(match.Value); 
     } 

     /// <summary> 
     /// Increments the reference of a given cell. This reference comes from the CellReference property 
     /// on a Cell. 
     /// </summary> 
     /// <param name="reference">reference string</param> 
     /// <param name="cellRefPart">indicates what is to be incremented</param> 
     /// <returns></returns> 
     public static string IncrementCellReference(string reference, CellReferencePartEnum cellRefPart) 
     { 
      string newReference = reference; 

      if (cellRefPart != CellReferencePartEnum.None && !String.IsNullOrEmpty(reference)) 
      { 
       string[] parts = Regex.Split(reference, "([A-Z]+)"); 

       if (cellRefPart == CellReferencePartEnum.Column || cellRefPart == CellReferencePartEnum.Both) 
       { 
        List<char> col = parts[1].ToCharArray().ToList(); 
        bool needsIncrement = true; 
        int index = col.Count - 1; 

        do 
        { 
         // increment the last letter 
         col[index] = Letters[Letters.IndexOf(col[index]) + 1]; 

         // if it is the last letter, then we need to roll it over to 'A' 
         if (col[index] == Letters[Letters.Count - 1]) 
         { 
          col[index] = Letters[0]; 
         } 
         else 
         { 
          needsIncrement = false; 
         } 

        } while (needsIncrement && --index >= 0); 

        // If true, then we need to add another letter to the mix. Initial value was something like "ZZ" 
        if (needsIncrement) 
        { 
         col.Add(Letters[0]); 
        } 

        parts[1] = new String(col.ToArray()); 
       } 

       if (cellRefPart == CellReferencePartEnum.Row || cellRefPart == CellReferencePartEnum.Both) 
       { 
        // Increment the row number. A reference is invalid without this componenet, so we assume it will always be present. 
        parts[2] = (int.Parse(parts[2]) + 1).ToString(); 
       } 

       newReference = parts[1] + parts[2]; 
      } 

      return newReference; 
     } 

इसके अलावा कुछ अतिरिक्त टुकड़े आप होगा आवश्यकता:

/// <summary> 
/// Given a cell name, parses the specified cell to get the column name. 
/// </summary> 
/// <param name="cellReference">Address of the cell (ie. B2)</param> 
/// <returns>Column name (ie. A2)</returns> 
private static string GetColumnName(string cellName) 
{ 
    // Create a regular expression to match the column name portion of the cell name. 
    Regex regex = new Regex("[A-Za-z]+"); 
    Match match = regex.Match(cellName); 

    return match.Value; 
} 
public enum CellReferencePartEnum 
{ 
    None, 
    Column, 
    Row, 
    Both 
} 
    private static List<char> Letters = new List<char>() { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', ' ' }; 
+0

धन्यवाद! यही वही है जो मैं खोज रहा था, हालांकि, मैंने सोचा कि यह इससे कहीं अधिक सरल होगा। –

+0

फ़ाइल खोलने में त्रुटि प्राप्त करने वाले किसी भी व्यक्ति को आपके दस्तावेज़ को सहेजने से पहले इस लाइन को आजमाएं 'xlsFile.WorkbookPart.DeletePart (xlsFile.WorkbookPart.CalculationChainPart);' जहां xlsfile स्प्रेडशीट दस्तावेज़ है – Reid

4

उत्तर के लिए धन्यवाद अमूर। उन लोगों के लिए जो अभी भी इसे नहीं बना सकते हैं, गायब टुकड़े

/// <summary> 
/// Given a cell name, parses the specified cell to get the column name. 
/// </summary> 
/// <param name="cellReference">Address of the cell (ie. B2)</param> 
/// <returns>Column name (ie. A2)</returns> 
private static string GetColumnName(string cellName) 
{ 
    // Create a regular expression to match the column name portion of the cell name. 
    Regex regex = new Regex("[A-Za-z]+"); 
    Match match = regex.Match(cellName); 

    return match.Value; 
} 
public enum CellReferencePartEnum 
{ 
    None, 
    Column, 
    Row, 
    Both 
} 
    private static List<char> Letters = new List<char>() { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', ' ' }; 
संबंधित मुद्दे