from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal import Conversions
from ....... import enums
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class RowsCls:
"""Rows commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("rows", core, parent)
# noinspection PyTypeChecker
[docs] def get_size(self) -> enums.SystConfFadEntOutp:
"""SCPI: [SOURce<HW>]:FSIMulator:SCM:ANTenna:TX:ROWS:[SIZE] \n
Snippet: value: enums.SystConfFadEntOutp = driver.source.fsimulator.scm.antenna.tx.rows.get_size() \n
Queries the number of rows and the number of columns in the antenna array. \n
:return: num_tx_rows: R01| R02| R03| R04| R08
"""
response = self._core.io.query_str('SOURce<HwInstance>:FSIMulator:SCM:ANTenna:TX:ROWS:SIZE?')
return Conversions.str_to_scalar_enum(response, enums.SystConfFadEntOutp)