Separator

SCPI Commands :

[SOURce<HW>]:LIST:DEXChange:AFILe:SEParator:COLumn
[SOURce<HW>]:LIST:DEXChange:AFILe:SEParator:DECimal
class SeparatorCls[source]

Separator commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_column() DexchSepCol[source]
# SCPI: [SOURce<HW>]:LIST:DEXChange:AFILe:SEParator:COLumn
value: enums.DexchSepCol = driver.source.listPy.dexchange.afile.separator.get_column()

Selects the separator between the frequency and level column of the ASCII table.

return:

column: TABulator| SEMicolon| COMMa| SPACe

get_decimal() DecimalSeparator[source]
# SCPI: [SOURce<HW>]:LIST:DEXChange:AFILe:SEParator:DECimal
value: enums.DecimalSeparator = driver.source.listPy.dexchange.afile.separator.get_decimal()

Sets ‘.’ (decimal point) or ‘,’ (comma) as the decimal separator used in the ASCII data with floating-point numerals.

return:

decimal: DOT| COMMa

set_column(column: DexchSepCol) None[source]
# SCPI: [SOURce<HW>]:LIST:DEXChange:AFILe:SEParator:COLumn
driver.source.listPy.dexchange.afile.separator.set_column(column = enums.DexchSepCol.COMMa)

Selects the separator between the frequency and level column of the ASCII table.

param column:

TABulator| SEMicolon| COMMa| SPACe

set_decimal(decimal: DecimalSeparator) None[source]
# SCPI: [SOURce<HW>]:LIST:DEXChange:AFILe:SEParator:DECimal
driver.source.listPy.dexchange.afile.separator.set_decimal(decimal = enums.DecimalSeparator.COMMa)

Sets ‘.’ (decimal point) or ‘,’ (comma) as the decimal separator used in the ASCII data with floating-point numerals.

param decimal:

DOT| COMMa