Color

SCPI Command :

POWer<*>:SWITching:DISPlay:TON:COLor
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(power=Power.Default) int[source]
# POWer<*>:SWITching:DISPlay:TON:COLor
value: int = driver.power.switching.display.ton.color.get(power = repcap.Power.Default)

The commands set the display color of the conduction area, non-conduction area, turn off area and turn on area, respectively.

Parameters:

power – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Power’)

set(turn_on_color: int, power=Power.Default) None[source]
# POWer<*>:SWITching:DISPlay:TON:COLor
driver.power.switching.display.ton.color.set(turn_on_color = 1, power = repcap.Power.Default)

The commands set the display color of the conduction area, non-conduction area, turn off area and turn on area, respectively.

Parameters:
  • turn_on_color – Decimal value of the ARGB color. Use the color dialog on the instrument to get the hex value of the color, and convert the hex value to a decimal value. 0 is fully transparent black. 4278190080 (dec) = FF000000 (hex) is opaque black. 4294967295 (dec) = FFFFFFFF (hex) is opaque white.

  • power – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Power’)