|
|
|
|
|
- Properties specific to gglDocument variables
- Functions that use gglDocument variables
- Functions (prefix syntax) that handle gglDocument variables
gglDocument (Variable type) 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. Note: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
Cnx is gglConnection
Cnx.Email = "balthazar@gmail.com"
Cnx.Password = "azerty"
Cnx.ApplicationName = "MonAppli-03"
IF GglConnect(Cnx) = False THEN
Error(ErrorInfo())
ELSE
tabDocs is array of gglDocument = GglListeDocument(Cnx)
Doc is gglDocument
FOR EACH Doc OF tabDocs
Trace(Doc.Title)
END
END
Properties 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. Note: For more details on allowed MIME types, see | Starred | Boolean | - True if the document is marked as "Starred",
- False otherwise.
| Title | Character string | Document title. | UpdateDate | DateTime | Date of the last document update. Note: The date is UTC (Universal Time Coordinated). |
Functions that use gglDocument variables | | GglDelete | Deletes data from the Google server. | GglGetDocument | Downloads a document from Google Docs. | 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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|