Scale
SCPI Command :
HCOPy:PAGE:WINDow:SCALe
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get() bool[source]
# HCOPy:PAGE:WINDow:SCALe value: bool = driver.hardCopy.page.window.scale.get()
This command determines the scaling of the windows in the printout for method
RsFsw.hardCopy.content.set().- Returns:
scale: 1 | 0 | ON | OFF 1 | ON Each window is scaled to fit the page size optimally, not regarding the aspect ratio of the original display. If more than one window is printed on one page (see method
RsFsw.hardCopy.page.window.count.set()) , each window is printed in equal size. (‘Size to fit’) 0 | OFF Each window is printed as large as possible while maintaining the aspect ratio of the original display. (‘Maintain aspect ratio’)
- set(scale: bool) None[source]
# HCOPy:PAGE:WINDow:SCALe driver.hardCopy.page.window.scale.set(scale = False)
This command determines the scaling of the windows in the printout for method
RsFsw.hardCopy.content.set().- Parameters:
scale – 1 | 0 | ON | OFF 1 | ON Each window is scaled to fit the page size optimally, not regarding the aspect ratio of the original display. If more than one window is printed on one page (see method
RsFsw.hardCopy.page.window.count.set()) , each window is printed in equal size. (‘Size to fit’) 0 | OFF Each window is printed as large as possible while maintaining the aspect ratio of the original display. (‘Maintain aspect ratio’)