Source code for RsFsw.Implementations.Applications.K70_Vsa.Display.Window.Trace.Y.Spacing

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 SpacingCls:
	"""
	| Commands in total: 1
	| Subgroups: 0
	| Direct child commands: 1
	"""

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

[docs] def set(self, unit: enums.ScalingMode, window=repcap.Window.Default, trace=repcap.Trace.Default) -> None: """ ``DISPlay[:WINDow<n>]:TRACe<t>:Y:SPACing`` \n Snippet: ``driver.applications.k70Vsa.display.window.trace.y.spacing.set(unit = enums.ScalingMode.LINear, window = repcap.Window.Default, trace = repcap.Trace.Default)`` \n Defines the unit of the y-axis in the selected result diagram. :param unit: LINear | LOGarithmic LOGarithmic Logarithmic scaling. LINear Linear scaling in %. :param window: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Window') :param trace: optional repeated capability selector. Default value: Tr1 (settable in the interface 'Trace') """ param = Conversions.enum_scalar_to_str(unit, enums.ScalingMode) window_cmd_val = self._cmd_group.get_repcap_cmd_value(window, repcap.Window) trace_cmd_val = self._cmd_group.get_repcap_cmd_value(trace, repcap.Trace) self._core.io.write(f'DISPlay:WINDow{window_cmd_val}:TRACe{trace_cmd_val}:Y:SPACing {param}')
# noinspection PyTypeChecker
[docs] def get(self, window=repcap.Window.Default, trace=repcap.Trace.Default) -> enums.ScalingMode: """ ``DISPlay[:WINDow<n>]:TRACe<t>:Y:SPACing`` \n Snippet: ``value: enums.ScalingMode = driver.applications.k70Vsa.display.window.trace.y.spacing.get(window = repcap.Window.Default, trace = repcap.Trace.Default)`` \n Defines the unit of the y-axis in the selected result diagram. :param window: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Window') :param trace: optional repeated capability selector. Default value: Tr1 (settable in the interface 'Trace') :return: unit: LINear | LOGarithmic LOGarithmic Logarithmic scaling. LINear Linear scaling in %. """ window_cmd_val = self._cmd_group.get_repcap_cmd_value(window, repcap.Window) trace_cmd_val = self._cmd_group.get_repcap_cmd_value(trace, repcap.Trace) response = self._core.io.query_str(f'DISPlay:WINDow{window_cmd_val}:TRACe{trace_cmd_val}:Y:SPACing?') return Conversions.str_to_scalar_enum(response, enums.ScalingMode)