Copy
SCPI Commands :
[SOURce<HW>]:REGenerator:OBJect:COPY:DESTination
[SOURce<HW>]:REGenerator:OBJect:COPY:SOURce
- class CopyCls[source]
Copy commands group definition. 3 total commands, 1 Subgroups, 2 group commands
- get_destination() RegObj [source]
# SCPI: [SOURce<HW>]:REGenerator:OBJect:COPY:DESTination value: enums.RegObj = driver.source.regenerator.object.copy.get_destination()
Sets the object whose settings are overwritten.
- return:
destination: ALL| 1| 2| 3| 4| 5| 6| 7| 8| 9| 12| 11| 10
- get_source() RegObjOne [source]
# SCPI: [SOURce<HW>]:REGenerator:OBJect:COPY:SOURce value: enums.RegObjOne = driver.source.regenerator.object.copy.get_source()
Selects the object whose settings are copied.
- return:
source: 1| 2| 3| 4| 5| 6| 7| 8| 9| 11| 12| 10
- set_destination(destination: RegObj) None [source]
# SCPI: [SOURce<HW>]:REGenerator:OBJect:COPY:DESTination driver.source.regenerator.object.copy.set_destination(destination = enums.RegObj._1)
Sets the object whose settings are overwritten.
- param destination:
ALL| 1| 2| 3| 4| 5| 6| 7| 8| 9| 12| 11| 10
- set_source(source: RegObjOne) None [source]
# SCPI: [SOURce<HW>]:REGenerator:OBJect:COPY:SOURce driver.source.regenerator.object.copy.set_source(source = enums.RegObjOne._1)
Selects the object whose settings are copied.
- param source:
1| 2| 3| 4| 5| 6| 7| 8| 9| 11| 12| 10
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.source.regenerator.object.copy.clone()
Subgroups