I'm trying to color an entire row based on a cell selection(value).I want to change the color of the row just for the used range in my worksheet but not for unused cells.
Here's the code I have right now:
class Program
{
static void Main(string[] args)
{
CreateWorkbook();
}
static void CreateWorkbook()
{
var workbook = new XLWorkbook();
var ws1 = workbook.AddWorksheet("Main");
var ws2 = workbook.AddWorksheet("ListOfOptions");
var listOfStrings = new List<String>();
listOfStrings.Add(" ");
listOfStrings.Add("Edit");
listOfStrings.Add("Delete");
ws2.Cell(2,2).InsertData(listOfStrings);
workbook.Worksheet(1).Column(3).SetDataValidation().List(ws2.Range("B2:B4"), true);
var list = new List<Person>();
list.Add(new Person() { Name = "John", Age = 30, Action = " " });
list.Add(new Person() { Name = "Mary", Age = 15, Action = " " });
list.Add(new Person() { Name = "Luis", Age = 21, Action = " " });
list.Add(new Person() { Name = "Henry", Age = 45, Action = " " });
ws1.Cell(1, 1).InsertData(list.AsEnumerable());
ws1.RangeUsed().AddConditionalFormat().WhenContains("Edit")
.Fill.SetBackgroundColor(XLColor.Yellow);
ws1.RangeUsed().AddConditionalFormat().WhenContains("Delete")
.Fill.SetBackgroundColor(XLColor.Red);
ws2.Hide();
workbook.SaveAs("DemoWorkbook.xlsx");
}
class Person
{
public string Name { get; set; }
public int Age { get; set; }
public string Action { get; set; }
}
}
The result is this: See excel screenshot