I am using OpenXml for creating an excel report through c#.I need set all the column width as 20 . I tried using
SheetFormatProperties properties = new SheetFormatProperties() { DefaultColumnWidth = 20 };
worksheet.AppendChild(properties);
but not working.. How to do it?