|
|
|
|
<gglConnection variable>.ListDocument (Function) In french: <Variable gglConnexion>.ListeDocument Retrieves the list of documents available on the Google server for the current user.
Cnt is gglConnection
...
IF Cnt.Connect() = False THEN
Error(ErrorInfo())
END
...
arrDocuments is array of 0 gglDocument dynamic
arrDocuments = Cnt.ListDocument("fullText contains 'Test'")
Doc is gglDocument dynamic
FOR EACH Doc OF arrDocuments
Trace(Doc.Title)
END
Syntax
<Result> = <Google connection>.DocumentList([<Search to perform>])
Remarks Possible error cases: - The Internet connection is not valid.
- The authentication was not performed properly.
Related Examples:
|
Unit examples (WINDEV): Accessing the Google documents
[ + ] Using the gglXxx functions to access the documents defined in your Google account.
|
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|