and available for download. Beside adding the migration support for  
Google Apps it adds a few bugfixes, as well as a slightly streamlined  
object model for CellFeeds (Spreadsheets). There is a longer example  
for this in clients/cs/src/unittests/spreadsheetlive.cs, and the  
changes are in the realease notes, nethertheless, here is a short  
example of how you go about getting the feed, adding a new Worksheet,  
and filling it now:

             SpreadsheetFeed feed = service.Query(query);
             SpreadsheetEntry entry = feed.Entries[0] as  
SpreadsheetEntry;
             WorksheetFeed sheets = entry.Worksheets;

             WorksheetEntry newEntry = sheets.Insert(new  
WorksheetEntry(10, 20, "New Worksheet"));
             CellFeed cells =  
newEntry.QueryCellFeed(ReturnEmtpyCells.yes);
             for (uint row = 1; row <= 10; row++)
             {
                 for (uint col=1; col <= 20; col++)
                 {
                     cells[row,col].InputValue = "R"+row+"C"+col;
                 }
             }
             cells.Publish(); // and done. This will do a batchupdate  
in the background


The complete release notes are at:  
http://code.google.com/p/google-gdata/wiki/ReleaseNotes

Download it at: http://code.google.com/p/google-gdata/downloads/list

If you find issues, report them here: 
http://code.google.com/p/google-gdata/issues/list

Enjoy,

Frank Mantek
Google

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Apps APIs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-apps-apis?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to