View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Steven.Dahlin Steven.Dahlin is offline
external usenet poster
 
Posts: 1
Default with .net call to excel range.merge()

I am trying to create and manipulate an Excel spreadsheet from a .net app and
trying to merge a range of cells. Intellisense gives the structure of the
call as follows:

void Range.Merge( object Across )

I am unclear as to what I need with Across Object . The Range object
already defines what cells are to be merged. if I pass something like this:

rng.Merge( rng );

I get an exception. Is there anywhere these calls are documented because a
search of google and Microsoft turn up nothing!!

Thanks,
Steve