Source code for RsFsw.Implementations.HardCopy.Treport.Item.Template

from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class TemplateCls:
	"""
	| Commands in total: 4
	| Subgroups: 1
	| Direct child commands: 3
	"""

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

	@property
	def catalog(self):
		"""
		| Commands in total: 1
		| Subgroups: 0
		| Direct child commands: 1
		"""
		if not hasattr(self, '_catalog'):
			from .Catalog import CatalogCls
			self._catalog = CatalogCls(self._core, self._cmd_group)
		return self._catalog

[docs] def delete(self, template: str) -> None: """ ``HCOPy:TREPort:ITEM:TEMPlate:DELete`` \n Snippet: ``driver.hardCopy.treport.item.template.delete(template = 'abc')`` \n This command deletes a test report template. :param template: String containing the name of the template. """ param = Conversions.value_to_quoted_str(template) self._core.io.write(f'HCOPy:TREPort:ITEM:TEMPlate:DELete {param}')
[docs] def load(self, template: str) -> None: """ ``HCOPy:TREPort:ITEM:TEMPlate:LOAD`` \n Snippet: ``driver.hardCopy.treport.item.template.load(template = 'abc')`` \n This command loads a test report template. :param template: String containing the name of the template. """ param = Conversions.value_to_quoted_str(template) self._core.io.write(f'HCOPy:TREPort:ITEM:TEMPlate:LOAD {param}')
[docs] def save(self, template: str) -> None: """ ``HCOPy:TREPort:ITEM:TEMPlate:SAVE`` \n Snippet: ``driver.hardCopy.treport.item.template.save(template = 'abc')`` \n This command saves a test report template in XML format. :param template: String containing the name of the template. The .xml file extension is added automatically. """ param = Conversions.value_to_quoted_str(template) self._core.io.write(f'HCOPy:TREPort:ITEM:TEMPlate:SAVE {param}')
def clone(self) -> 'TemplateCls': """ Clones the group by creating new object from it and its whole existing subgroups. Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group. """ new_group = TemplateCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group