|
|
|
|
- Properties specific to gglDocument variables
- Functions that use gglDocument variables
- Functions (prefix syntax) that handle gglDocument variables
gglDocument (Type of variable) In french: gglDocument
The gglDocument type is used to handle a Google document. This document was created by GglUploadDocument. The characteristics of this document are returned by several WLanguage properties. Remark: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
// Connection Cnt is gglConnection Cnt.Email = "balthazar@gmail.com" Cnt.Password = "qwerty" Cnt.ApplicationName = "MyApp-03" IF GglConnect(Cnt) = False THEN Error(ErrorInfo()) ELSE // Retrieve the array of documents arrDocs is array of gglDocument = GglListDocument(Cnt) // Browse the documents Doc is gglDocument FOR EACH Doc OF arrDocs Trace(Doc.Title) END END
Remarks Properties specific to gglDocument variables The following properties can be used to handle a Google document (these properties are available in read-only): | | | Property name | Type used | Effect |
---|
Identifier | Character string | Identifier of document. | MIMEType | Character string | MIME type of the document. Remark: For more details about the authorized MIME types, see | Starred | Boolean | - True if the document is marked as "Starred",
- False otherwise.
| Title | Character string | Title of document. | UpdateDate | DateTime | Date of the last document update. Remark: The date is a UTC date (in universal time). |
Functions that use gglDocument variables | | GglDelete | Deletes data from the Google server. | GglGetDocument | Downloads a document from the Google Docs service. | GglListDocument | Retrieves the list of documents available on the Google server for the current user. |
Functions (prefix syntax) that handle gglDocument variables
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|