Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

C# for Excel missing properties and methods?

Status
Not open for further replies.

christhedonstar

Programmer
Apr 9, 2007
215
GB
Hi,

Anyone know? how comes this code doesn't return a range object

foreach (Excel.Name tmpName in _application.ActiveWorkbook.Names) {
if (tmpName.Name == rangeName){
return tmpName.RefersTo;
}
}

Also,

How comes:

Excel.Range outputRange

//code to get outputRange

outputRange.resizeRange doesn't exist?


Thanks,

Chris
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top