Source code for RsFsw.Implementations.Applications.K70_Vsa.Calculate.Statistics.Scale.Y.Unit

from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
from ........Internal import Conversions
from ........ import enums
from ........ import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class UnitCls:
	"""
	| Commands in total: 1
	| Subgroups: 0
	| Direct child commands: 1
	"""

	def __init__(self, core: Core, parent):
		self._core = core
		self._cmd_group = CommandsGroup("unit", core, parent)

[docs] def set(self, unit: enums.ScaleYaxisUnit, window=repcap.Window.Default) -> None: """ ``CALCulate<n>:STATistics:SCALe:Y:UNIT`` \n Snippet: ``driver.applications.k70Vsa.calculate.statistics.scale.y.unit.set(unit = enums.ScaleYaxisUnit.ABS, window = repcap.Window.Default)`` \n Selects the unit of the y-axis. :param unit: PCT | ABS :param window: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Calculate') """ param = Conversions.enum_scalar_to_str(unit, enums.ScaleYaxisUnit) window_cmd_val = self._cmd_group.get_repcap_cmd_value(window, repcap.Window) self._core.io.write(f'CALCulate{window_cmd_val}:STATistics:SCALe:Y:UNIT {param}')
# noinspection PyTypeChecker
[docs] def get(self, window=repcap.Window.Default) -> enums.ScaleYaxisUnit: """ ``CALCulate<n>:STATistics:SCALe:Y:UNIT`` \n Snippet: ``value: enums.ScaleYaxisUnit = driver.applications.k70Vsa.calculate.statistics.scale.y.unit.get(window = repcap.Window.Default)`` \n Selects the unit of the y-axis. :param window: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Calculate') :return: unit: PCT | ABS """ window_cmd_val = self._cmd_group.get_repcap_cmd_value(window, repcap.Window) response = self._core.io.query_str(f'CALCulate{window_cmd_val}:STATistics:SCALe:Y:UNIT?') return Conversions.str_to_scalar_enum(response, enums.ScaleYaxisUnit)