Aspose::Cells::LoadFilter class

LoadFilter class

Represents the filter that provides options for loading data when loading workbook from template.

class LoadFilter

Methods

MethodDescription
GetLoadDataFilterOptions()Gets the filter options to denote what data should be loaded.
virtual GetSheetsInLoadingOrder()Specifies the sheets(indices) and order to be loaded. Default is null, that denotes to load all sheets in the default order in template file. If not null and some sheet’s index is not in the returned array, then the sheet will not be loaded.
IsNull() constChecks whether the implementation object is nullptr.
LoadFilter()Constructs one LoadFilter with default filter options LoadDataFilterOptions::All.
explicit LoadFilter(LoadDataFilterOptions opts)Constructs one LoadFilter with given filter options.
LoadFilter(const LoadFilter& src)
explicit operator bool() constoperator bool()
operator=(const LoadFilter& src)
SetLoadDataFilterOptions(LoadDataFilterOptions value)Sets the filter options to denote what data should be loaded.
virtual StartSheet(Worksheet& sheet)Prepares filter options before loading given worksheet. User’s implementation of LoadFilter can change the LoadDataFilterOptions here to denote how to load data for this worksheet.
~LoadFilter()Destructor.

Fields

FieldDescription
_implThe implementation object.
_loadDataFilterOptionsThe default filter options used by this filter.

Remarks

User may specify the filter options or implement their own LoadFilter to specify how to load data.

Examples

Aspose::Cells::Startup();
//Custom LoadFilter implementation
class LoadFilterSheet : public LoadFilter
{
public:
    void StartSheet(Worksheet& sheet)
    {
        if (sheet.GetName() == u"Sheet1")
        {
            SetLoadDataFilterOptions(LoadDataFilterOptions::All);
        }
        else
        {
            SetLoadDataFilterOptions(LoadDataFilterOptions::Structure);
        }
    }
};

//The following example shows how to determine the filter options according to worksheet's properties.
LoadOptions opts;
LoadFilterSheet filter;
opts.SetLoadFilter(&filter);
Workbook wb(u"template.xlsx", opts);

Aspose::Cells::Cleanup();

See Also