Google Integrator V2 - Online Help
Google Integrator V2
Questions / Feedback?

WorksheetList Event

Fired once for each worksheet entry retrieved.

Syntax

[VB.NET]
Public Event OnWorksheetList As OnWorksheetListHandler
[C#]
public event OnWorksheetListHandler OnWorksheetList;

public delegate void OnWorksheetListHandler(object sender, GspreadsheetsWorksheetListEventArgs e);

class GspreadsheetsWorksheetListEventArgs : EventArgs {
  string Id {get;}
  string ETag {get;}
  string DateUpdated {get;}
  string Title {get;}
  int RowCount {get;}
  int ColumnCount {get;}
}

Remarks

The WorksheetList event is fired for each worksheet entry retrieved after a QueryWorksheets call.

Id contains the ID value for the current worksheet.

ETag contains the ETag value for the current worksheet.

DateUpdated contains the date and time that the current worksheet was last updated. The format of the date will depend on the DateFormat you are currently using. Unless otherwise specified, the default format used is "yyyy-MM-ddTHH:mm:ss.fffZ" (e.g. 2011-04-04T18:44:20.000Z).

Title contains the title of the current worksheet.

RowCount contains the number of rows in the current worksheet.

ColumnCount contains the number of columns in the current worksheet.

 
 
Copyright (c) 2017 /n software inc. - All rights reserved.
Build 2.0.6240.0