Auto
SCPI Commands :
HCOPy:FILE:[NAME]:AUTO:STATe
HCOPy:FILE:[NAME]:AUTO
- class AutoCls[source]
Auto commands group definition. 11 total commands, 2 Subgroups, 2 group commands
- get_state() bool [source]
# SCPI: HCOPy:FILE:[NAME]:AUTO:STATe value: bool = driver.hardCopy.file.name.auto.get_state()
Activates automatic naming of the hard copy files.
- return
state: 1| ON| 0| OFF
- get_value() str [source]
# SCPI: HCOPy:FILE:[NAME]:AUTO value: str = driver.hardCopy.file.name.auto.get_value()
Queries path and file name of the hardcopy file, if you have enabled Automatic Naming.
- return
auto: string
- set_state(state: bool) None [source]
# SCPI: HCOPy:FILE:[NAME]:AUTO:STATe driver.hardCopy.file.name.auto.set_state(state = False)
Activates automatic naming of the hard copy files.
- param state
1| ON| 0| OFF
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.hardCopy.file.name.auto.clone()
Subgroups