Font

SCPI Commands :

POWer:REPort:FONT:FAMI
POWer:REPort:FONT:SIZE
POWer:REPort:FONT:COLO
Commands in total: 3
Subgroups: 0
Direct child commands: 3
get_colo() int[source]
# POWer:REPort:FONT:COLO
value: int = driver.power.report.font.get_colo()

Sets the font color.

Returns:

font_color: 0 to 4294967295

get_fami() FontFamily[source]
# POWer:REPort:FONT:FAMI
value: enums.FontFamily = driver.power.report.font.get_fami()

Selects the font family. You can choose between Arial and Helvetica.

Returns:

font_family: ARIAL | HELV

get_size() int[source]
# POWer:REPort:FONT:SIZE
value: int = driver.power.report.font.get_size()

Sets the font size.

Returns:

fontsize: 10 to 30

set_colo(font_color: int) None[source]
# POWer:REPort:FONT:COLO
driver.power.report.font.set_colo(font_color = 1)

Sets the font color.

Parameters:

font_color – 0 to 4294967295

set_fami(font_family: FontFamily) None[source]
# POWer:REPort:FONT:FAMI
driver.power.report.font.set_fami(font_family = enums.FontFamily.ARIAL)

Selects the font family. You can choose between Arial and Helvetica.

Parameters:

font_family – ARIAL | HELV

set_size(fontsize: int) None[source]
# POWer:REPort:FONT:SIZE
driver.power.report.font.set_size(fontsize = 1)

Sets the font size.

Parameters:

fontsize – 10 to 30