Fcondition
SCPI Command :
SEARch:TRIGger:FLXRay:FCONdition
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get(search: str) ConditionOperator[source]
# SEARch:TRIGger:FLXRay:FCONdition value: enums.ConditionOperator = driver.search.trigger.flxRay.fcondition.get(search = 'abc')
Sets the operator to set a frame ID or a frame ID range.
- Parameters:
search –
OFF | ANY | EQUal | NEQual | LTHan | LETHan | GTHan | GETHan | INRange | OORange
OFF = ANY: The frame ID is not relevant for the search condition.
EQUal | NEQual | LTHan | LETHan | GTHan | GETHan: Equal, Not equal, Less than, Less or equal than, Greater Than, Greater or equal than. These conditions require one frame ID to be set with SEARch:TRIGger:FLXRay:FMIN.
INRange | OORange: In range, Out of range: Set the minimum and maximum value of the range with SEARch:TRIGger:FLXRay:FMIN and SEARch:TRIGger:FLXRay:FMAX.
- set(search: str, idtf_optor: ConditionOperator) None[source]
# SEARch:TRIGger:FLXRay:FCONdition driver.search.trigger.flxRay.fcondition.set(search = 'abc', idtf_optor = enums.ConditionOperator.EQUal)
Sets the operator to set a frame ID or a frame ID range.