A property matcher with an explicit comparison operator.
When a selector property value is a PropertyMatcher object instead of a plain primitive, the operator field controls how the comparison is made.
PropertyMatcher
operator
const selector: UI5Selector = { controlType: 'sap.m.Input', properties: { value: { value: 'partial', operator: 'contains' }, },}; Copy
const selector: UI5Selector = { controlType: 'sap.m.Input', properties: { value: { value: 'partial', operator: 'contains' }, },};
Optional
Readonly
Comparison operator. Defaults to 'equals' when omitted.
'equals'
The value to compare against.
A property matcher with an explicit comparison operator.
Remarks
When a selector property value is a
PropertyMatcherobject instead of a plain primitive, theoperatorfield controls how the comparison is made.Example