Ejemplo n.º 1
0
 private void ParseCells(GoogleCellFeed feed)
 {
     cells = new string[feed.RowCount.Count, feed.ColCount.Count];
     foreach (GoogleCellEntry cell in feed.Entries)
     {
         cells[cell.Row - 1, cell.Column - 1] = cell.Value;
     }
 }
Ejemplo n.º 2
0
 internal Worksheet(string name, GoogleCellFeed feed)
 {
     Name = name;
     ParseCells(feed);
 }