Icondition
SCPI Command :
SEARch:TRIGger:LIN:ICONdition
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get(search: str) ConditionOperator[source]
# SEARch:TRIGger:LIN:ICONdition value: enums.ConditionOperator = driver.search.trigger.lin.icondition.get(search = 'abc')
Sets the operator to define a specific identifier or an identifier range.
- Parameters:
search –
EQUal | NEQual | LTHan | LETHan | GTHan | GETHan | INRange | OORange
EQUal | NEQual | LTHan | LETHan | GTHan | GETHan: Equal, Not equal, Less than, Less or equal than, Greater Than, Greater or equal than. These operators require one identifier pattern to be set with SEARch:TRIGger:LIN:IMIN
INRange | OORange: In range / Out of range: Set the minimum and maximum value of the range with SEARch:TRIGger:LIN:IMIN and SEARch:TRIGger:LIN:IMAX.
- set(search: str, idtf_optor: ConditionOperator) None[source]
# SEARch:TRIGger:LIN:ICONdition driver.search.trigger.lin.icondition.set(search = 'abc', idtf_optor = enums.ConditionOperator.EQUal)
Sets the operator to define a specific identifier or an identifier range.