krishna
krishna

Reputation: 19

Insert 'X' symbol into a cell using closedxml in c#

I'm aware of the following solution for adding symbols into cells using closedxml in c#

ws.Cell(1, 1).Value = "X"; i am trying to add 'X' symbol but i am getting the symbol code.

Could you please provide 'X' symbol code to me.

Upvotes: 1

Views: 211

Answers (1)

Francois Botha
Francois Botha

Reputation: 4849

ws.Cell(1, 1).SetValue("X");

Upvotes: 1

Related Questions