I have tried this
How do I get an Excel range using row and column numbers in VSTO / C#?
but it throw an undefined com exception
what I would like is something like (pseudocode)
Range myRange = new Range(new cell(1,1), cell(3,3));
so that I can then use it with (pseudocode again)
ws.myRange.Interior.Color = XlRgbColor.rgbDarkGray;
thank you