SystemPredicatesContext

Context used for setting which System Predicates are available

TypeScript
export interface SystemPredicatesContext<PREDICATE_TYPE = string> extends
Extends

BaseContext

Properties

PropertyDescription
columnScopeCurrent Scope where Predicates are being used
moduleScopeModule for which Predicates are being retrieved
systemPredicateDefsAdapTable-provided System Predicate Definitions
adaptableContextCustom application Context provided in AdaptableOptions.adaptableContext

Property Details

columnScope

Current Scope where Predicates are being used

TypeScript
columnScope: ColumnScope;
Property Value

ColumnScope

moduleScope

Module for which Predicates are being retrieved

TypeScript
moduleScope: PredicateModuleScope;
Property Value

PredicateModuleScope

systemPredicateDefs

AdapTable-provided System Predicate Definitions

TypeScript
systemPredicateDefs: AdaptablePredicateDef<PREDICATE_TYPE>[];
Property Value

AdaptablePredicateDef<PREDICATE_TYPE>[]

adaptableContext

Inherited from BaseContext

Custom application Context provided in AdaptableOptions.adaptableContext

TypeScript
adaptableContext: any;
Property Value

any