Establishes the foundational structure, core Excel functionality, and tooling. - Implements base components for cells, ranges, columns, and rows. - Integrates a custom calculation engine with a wide range of Excel functions. - Adds comprehensive support for styling, conditional formatting, data validation, comments, pictures, and charts. - Configures build setup, project metadata (NuGet), and developer guidelines. - Includes editor and Git attributes for consistent code style and line endings.
89 lines
1.6 KiB
C#
89 lines
1.6 KiB
C#
using System;
|
|
using ClosedXML.Excel;
|
|
|
|
|
|
namespace ClosedXML_Examples.Misc
|
|
{
|
|
public class MergeCells : IXLExample
|
|
{
|
|
#region Variables
|
|
|
|
// Public
|
|
|
|
// Private
|
|
|
|
|
|
#endregion
|
|
|
|
#region Properties
|
|
|
|
// Public
|
|
|
|
// Private
|
|
|
|
// Override
|
|
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
// Public
|
|
|
|
|
|
// Private
|
|
|
|
|
|
#endregion
|
|
|
|
#region Events
|
|
|
|
// Public
|
|
|
|
// Private
|
|
|
|
// Override
|
|
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
// Public
|
|
public void Create(String filePath)
|
|
{
|
|
var workbook = new XLWorkbook();
|
|
var ws = workbook.Worksheets.Add("Merge Cells");
|
|
|
|
// Merge a row
|
|
ws.Cell("B2").Value = "Merged Row(1) of Range (B2:D3)";
|
|
ws.Range("B2:D3").Row(1).Merge();
|
|
|
|
// Merge a column
|
|
ws.Cell("F2").Value = "Merged Column(1) of Range (F2:G8)";
|
|
ws.Cell("F2").Style.Alignment.WrapText = true;
|
|
ws.Range("F2:G8").Column(1).Merge();
|
|
|
|
// Merge a range
|
|
ws.Cell("B4").Value = "Merged Range (B4:D6)";
|
|
ws.Cell("B4").Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center;
|
|
ws.Cell("B4").Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
|
ws.Range("B4:D6").Merge();
|
|
|
|
// Unmerging a range...
|
|
ws.Cell("B8").Value = "Unmerged";
|
|
ws.Range("B8:D8").Merge();
|
|
ws.Range("B8:D8").Unmerge();
|
|
|
|
workbook.SaveAs(filePath);
|
|
}
|
|
|
|
// Private
|
|
|
|
// Override
|
|
|
|
|
|
#endregion
|
|
}
|
|
}
|