[docs]classRowsCls:"""Rows commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("rows",core,parent)# noinspection PyTypeChecker
[docs]defget_size(self)->enums.SystConfFadEntOutp:"""SCPI: [SOURce<HW>]:FSIMulator:SCM:ANTenna:RX:ROWS:[SIZE] \n Snippet: value: enums.SystConfFadEntOutp = driver.source.fsimulator.scm.antenna.rx.rows.get_size() \n Queries the number of rows and the number of columns in the antenna array. \n :return: num_rx_row: R01| R02| R03| R04| R08 """response=self._core.io.query_str('SOURce<HwInstance>:FSIMulator:SCM:ANTenna:RX:ROWS:SIZE?')returnConversions.str_to_scalar_enum(response,enums.SystConfFadEntOutp)