Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I realise this means that this method is unsupported on the target machine, so that's fine, but how else can I get the same functionality?

If I use Range.Borders.LineStyle and Range.Borders.Weight then it doesn't put a border around the range, it will put borders around every individual cell inside the range (like a grid), which is not what I need.

The target machines use Office 2007. All other Office Interop code in my project works fine, just this.

share|improve this question

1 Answer

You can try this code:

sheet.Range["A1:D6"].BorderAround();
share|improve this answer
I don't have Range.BorderAround(), only Range.BorderAround2() – Ozzah Dec 17 '12 at 21:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.