Csv

SCPI Commands :

SENSe:[POWer]:SWEep:HCOPy:DEVice:LANGuage:CSV:DPOint
SENSe:[POWer]:SWEep:HCOPy:DEVice:LANGuage:CSV:HEADer
SENSe:[POWer]:SWEep:HCOPy:DEVice:LANGuage:CSV:ORIentation
class CsvCls[source]

Csv commands group definition. 4 total commands, 1 Subgroups, 3 group commands

get_dpoint() DecimalSeparator[source]
# SCPI: SENSe:[POWer]:SWEep:HCOPy:DEVice:LANGuage:CSV:DPOint
value: enums.DecimalSeparator = driver.sense.power.sweep.hardCopy.device.language.csv.get_dpoint()

Defines which character is used as the decimal point of the values, either dot or comma.

return:

dpoint: DOT| COMMa

get_header() MeasRespHcOpCsvhEader[source]
# SCPI: SENSe:[POWer]:SWEep:HCOPy:DEVice:LANGuage:CSV:HEADer
value: enums.MeasRespHcOpCsvhEader = driver.sense.power.sweep.hardCopy.device.language.csv.get_header()

Defines whether each row (or column depending on the orientation) should be preceded by a header containing information about the trace (see also method RsSmab.Sense.Power.Sweep.HardCopy.data) .

return:

header: OFF| STANdard

get_orientation() MeasRespHcOpCsvoRient[source]
# SCPI: SENSe:[POWer]:SWEep:HCOPy:DEVice:LANGuage:CSV:ORIentation
value: enums.MeasRespHcOpCsvoRient = driver.sense.power.sweep.hardCopy.device.language.csv.get_orientation()

Defines the orientation of the X/Y value pairs.

return:

orientation: HORizontal| VERTical

set_dpoint(dpoint: DecimalSeparator) None[source]
# SCPI: SENSe:[POWer]:SWEep:HCOPy:DEVice:LANGuage:CSV:DPOint
driver.sense.power.sweep.hardCopy.device.language.csv.set_dpoint(dpoint = enums.DecimalSeparator.COMMa)

Defines which character is used as the decimal point of the values, either dot or comma.

param dpoint:

DOT| COMMa

set_header(header: MeasRespHcOpCsvhEader) None[source]
# SCPI: SENSe:[POWer]:SWEep:HCOPy:DEVice:LANGuage:CSV:HEADer
driver.sense.power.sweep.hardCopy.device.language.csv.set_header(header = enums.MeasRespHcOpCsvhEader.OFF)

Defines whether each row (or column depending on the orientation) should be preceded by a header containing information about the trace (see also method RsSmab.Sense.Power.Sweep.HardCopy.data) .

param header:

OFF| STANdard

set_orientation(orientation: MeasRespHcOpCsvoRient) None[source]
# SCPI: SENSe:[POWer]:SWEep:HCOPy:DEVice:LANGuage:CSV:ORIentation
driver.sense.power.sweep.hardCopy.device.language.csv.set_orientation(orientation = enums.MeasRespHcOpCsvoRient.HORizontal)

Defines the orientation of the X/Y value pairs.

param orientation:

HORizontal| VERTical

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.sense.power.sweep.hardCopy.device.language.csv.clone()

Subgroups