set_key_range_filter_value
Description:
[ Version ( since = "0.2.0" ) ]
public bool set_key_range_filter_value (KeyID key, Value? min_value, Value? max_value)
public bool set_key_range_filter_value (KeyID key, Value? min_value, Value? max_value)
Set filter as "min_value <= key <= max_value".
If min_value is null, then filter is "key <= max_value".
If max_value is null, then filter is "key >= min_value".
Note that key will always respect the limits defined at creation time. e.g: Core's GRL_METADATA_KEY_ORIENTATION has "max = 359"
and "min = 0", user can set "max_value = 180" but "max_value = 720" would be ignored.
Parameters:
| this |
a OperationOptions instance |
| key |
a KeyID |
| min_value |
minimum value for range |
| max_value |
maximum value for range |
Returns:
|
true on success |