ActiveX API questions
Hi
You mentioned on another thread OnCustomExpressionBuilder returns a handle to ExpressionBuilderParams but when is this event fired ? I can see there is a UseCustomExpressionBuilder property but not quite sure how this works as I can't see anything in the samples ?
QueryTransformer.StateXml property allows you to save state of the QueryTransformer: filters, sortings, aggregates and limits.
It returns a string in XML format.
When the state is restored, filters and sortings which columns are not present in the current query are automatically deleted.
For example, you have the query
and add 2 filters:
and then save state, 2 filters will be saved.
Next, you changed the query (for example, unchecked OrderDate in the GUI):
and then restore StateXml, OrderDate filter will be ignored and only OrderID > 1000 will be applied.