TdxCloudStorageGoogleDriveProvider.DefaultMIMETypeExportTypeDictionary Property
Provides access to the dictionary populated with the corresponding Google Document and Office Open XML multipurpose internet mail extension (MIME) content types.
Declaration
class property DefaultMIMETypeExportTypeDictionary: TdxStringsDictionary read;
Property Value
Type |
---|
TdxStringsDictionary |
Remarks
The Google Drive data provider uses this property to request a file stored in a unique Google Document format in the format that the corresponding DevExpress product supports. The dictionary accessible via the DefaultMIMETypeExportTypeDictionary property is automatically populated on loading the dxCloudStorageGoogleDriveProvider unit with the values listed in the following table:
Source Format | Dictionary Key | Destination Format | Dictionary Value | Recommended DevExpress Control |
---|---|---|---|---|
Google Docs | ‘application/vnd.google-apps.document’ | DOCX (Office Open XML Document) | ‘application/vnd.openxmlformats-officedocument.wordprocessingml.document’ | TdxRichEditControl |
Google Sheets | ‘application/vnd.google-apps.spreadsheet’ | XLSX (Office Open XML Workbook) | ‘application/vnd.openxmlformats-officedocument.spreadsheetml.sheet’ | TdxSpreadSheet or TdxSpreadSheetReportDesigner |
Google Slides | ‘application/vnd.google-apps.presentation’ | PDF (Portable Document Format) | ‘application/pdf’ | TdxPDFViewer |
See Also