Its under the methods of ExportOptions in the help file.
procedure Save; virtual; Description This method will save the contents of the grid to a file or the clipboard based on the property settings below. Call this method when you wish to allow your endusers to export data from the TwwDBGrid
Ok, maybe I'm missing it, but how do you export the contents of a wwDBGrid to a file? I see how to setup the filename and format, just not a function to actually do the export!
Delphi is object-based so exporting is through the export object.
Its under the methods of ExportOptions in the help file.
procedure Save; virtual; Description This method will save the contents of the grid to a file or the clipboard based on the property settings below. Call this method when you wish to allow your endusers to export data from the TwwDBGrid
Ok, I found the member function as part of ExportOptions, but I still don't see where it is documented.
Take a look at the export demo as part of the main demo. It has the code to do this.
Ok, maybe I'm missing it, but how do you export the contents of a wwDBGrid to a file? I see how to setup the filename and format, just not a function to actually do the export!