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.
52 lines
1.4 KiB
C#
52 lines
1.4 KiB
C#
using System;
|
|
using System.Linq;
|
|
using ClosedXML.Excel;
|
|
|
|
|
|
namespace ClosedXML_Examples.Ranges
|
|
{
|
|
public class CurrentRowColumn : IXLExample
|
|
{
|
|
#region Methods
|
|
|
|
// Public
|
|
public void Create(String filePath)
|
|
{
|
|
var wb = new XLWorkbook();
|
|
var ws = wb.Worksheets.Add("Current Row Column");
|
|
|
|
var cell = ws.Cell(5, 2);
|
|
cell.Style.Fill.SetBackgroundColor(XLColor.Red);
|
|
ws.Cell(1, 1)
|
|
.SetValue("Red's Row:")
|
|
.CellRight().SetValue(cell.WorksheetRow().RowNumber())
|
|
.CellBelow().SetValue(cell.WorksheetColumn().ColumnLetter())
|
|
.CellLeft().SetValue("Red's Column:");
|
|
|
|
var row = ws.Range("A6:C6").FirstRow();
|
|
row.Style.Fill.SetBackgroundColor(XLColor.Blue);
|
|
|
|
var column = ws.Range("B7:B9").FirstColumn();
|
|
column.Style.Fill.SetBackgroundColor(XLColor.Green);
|
|
|
|
ws.Cell(1, 4)
|
|
.SetValue("Blue's Row:")
|
|
.CellRight().SetValue(row.WorksheetRow().RowNumber())
|
|
.CellBelow().SetValue(column.WorksheetColumn().ColumnLetter())
|
|
.CellLeft().SetValue("Green's Column:");
|
|
|
|
ws.Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Right;
|
|
ws.Columns().AdjustToContents();
|
|
|
|
wb.SaveAs(filePath);
|
|
}
|
|
|
|
// Private
|
|
|
|
// Override
|
|
|
|
|
|
#endregion
|
|
}
|
|
}
|