Splitter

SCPI Command :

LAYout:SPLitter
class SplitterCls[source]

Splitter commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class SplitterStruct[source]

Response structure. Fields:

  • Index_1: float: The index of one window the splitter controls.

  • Index_2: float: The index of a window on the other side of the splitter.

  • Position: float: New vertical or horizontal position of the splitter as a fraction of the screen area (without channel and status bar and softkey menu) . The point of origin (x = 0, y = 0) is in the lower left corner of the screen. The end point (x = 100, y = 100) is in the upper right corner of the screen. (See Figure ‘SmartGrid coordinates for remote control of the splitters’.) The direction in which the splitter is moved depends on the screen layout. If the windows are positioned horizontally, the splitter also moves horizontally. If the windows are positioned vertically, the splitter also moves vertically. Range: 0 to 100

get() SplitterStruct[source]
# SCPI: LAYout:SPLitter
value: SplitterStruct = driver.applications.k30NoiseFigure.layout.splitter.get()

Changes the position of a splitter and thus controls the size of the windows on each side of the splitter. Compared to the method RsFsw.Applications.K17_Mcgd.Display.Window.Size.set command, the method RsFsw.Applications.K17_Mcgd.Layout. Splitter.set changes the size of all windows to either side of the splitter permanently, it does not just maximize a single window temporarily. Note that windows must have a certain minimum size. If the position you define conflicts with the minimum size of any of the affected windows, the command does not work, but does not return an error.

return

structure: for return value, see the help for SplitterStruct structure arguments.

set(index_1: float, index_2: float, position: float) None[source]
# SCPI: LAYout:SPLitter
driver.applications.k30NoiseFigure.layout.splitter.set(index_1 = 1.0, index_2 = 1.0, position = 1.0)

Changes the position of a splitter and thus controls the size of the windows on each side of the splitter. Compared to the method RsFsw.Applications.K17_Mcgd.Display.Window.Size.set command, the method RsFsw.Applications.K17_Mcgd.Layout. Splitter.set changes the size of all windows to either side of the splitter permanently, it does not just maximize a single window temporarily. Note that windows must have a certain minimum size. If the position you define conflicts with the minimum size of any of the affected windows, the command does not work, but does not return an error.

param index_1

The index of one window the splitter controls.

param index_2

The index of a window on the other side of the splitter.

param position

New vertical or horizontal position of the splitter as a fraction of the screen area (without channel and status bar and softkey menu) . The point of origin (x = 0, y = 0) is in the lower left corner of the screen. The end point (x = 100, y = 100) is in the upper right corner of the screen. (See Figure ‘SmartGrid coordinates for remote control of the splitters’.) The direction in which the splitter is moved depends on the screen layout. If the windows are positioned horizontally, the splitter also moves horizontally. If the windows are positioned vertically, the splitter also moves vertically. Range: 0 to 100