Interface IFIXGRIDExportSanitizer
- All Known Implementing Classes:
DefaultFIXGRIDExportSanitizer
,FIXGRIDExportSanitizer.DummyExportSanitizer
public interface IFIXGRIDExportSanitizer
Before data of the grid is exported it is passed to this interface so that it
can be sanitized. Example: if exporting to Excel, then any VB-Scripting might
be removed from the data.
By default the implementation
By default the implementation
DefaultFIXGRIDExportSanitizer
is used.
We recommend to extend your implementation from this class in order to take
over default sanitizing functions.-
Method Summary
Modifier and TypeMethodDescriptionvoid
sanitizeStringDataBeforeExport
(ENUMExportType exportType, List<List<String>> data) void
sanitizeValueDataBeforeExport
(ENUMExportType exportType, List<List<FIXGRIDBinding.FormattedValue>> data)
-
Method Details
-
sanitizeStringDataBeforeExport
-
sanitizeValueDataBeforeExport
void sanitizeValueDataBeforeExport(ENUMExportType exportType, List<List<FIXGRIDBinding.FormattedValue>> data)
-