Mode
SCPI Command :
SEARch:RESult:SORT[:MODE]
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get(search: str) SortMode[source]
# SEARch:RESult:SORT[:MODE] value: enums.SortMode = driver.search.result.sort.mode.get(search = 'abc')
Sorts the search result table by x-value position or value of the result.
- Parameters:
search – Search definition
- Returns:
sort_mode: POSition | VALue
POSition: Sorts the search result table by the x-value position.
VALue: Sorts the search result table by the value of the result.
- set(search: str, sort_mode: SortMode) None[source]
# SEARch:RESult:SORT[:MODE] driver.search.result.sort.mode.set(search = 'abc', sort_mode = enums.SortMode.POSition)
Sorts the search result table by x-value position or value of the result.
- Parameters:
search – Search definition
sort_mode –
POSition | VALue
POSition: Sorts the search result table by the x-value position.
VALue: Sorts the search result table by the value of the result.