Tell me more ×
SharePoint Stack Exchange is a question and answer site for SharePoint enthusiasts. It's 100% free, no registration required.

I'm trying to put inside a List of cells from a WorksheetPart object. I'm tryin :

        WorksheetPart wsPart = (WorksheetPart)(wbPart.GetPartById(theSheet.Id));
        List<Cell> theCell = wsPart.Worksheet.Descendants<Cell>().Where(c => c. ==           colName).ToList();

But I get 0 cellS!

share|improve this question

closed as off topic by Kit Menke Jul 9 '12 at 14:30

Questions on SharePoint Stack Exchange are expected to relate to SharePoint within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

Browse other questions tagged or ask your own question.