simetrix.TitleBlockInfo

class simetrix.TitleBlockInfo

Bases: object

Return data from Schematic.getTitleBlockInfo() method.

Methods

Attributes

author

Author of schematic.

companyName

Company name displayed in title block.

date

Schematic date.

layout

'Horizontal' or 'Vertical'

logo

Base64 encoded image used in title block.

notes

Notes displayed in title block

title

Title of schematic.

version

Schematic user version.

property author: str

Author of schematic.

property companyName: str

Company name displayed in title block.

property date: str

Schematic date. Note that this returns the title block setting which is not necessarily the actual schematic date. If the date is set to ‘auto’, this value will return ‘<<auto>>’. To get the actual save date of the schematic use the Schematic.propertyValue() method with the ‘FileDate’ argument. E.g.:

schematic.propertyValue('FileDate')
property layout: str

‘Horizontal’ or ‘Vertical’

Base64 encoded image used in title block.

property notes: str

Notes displayed in title block

property title: str

Title of schematic.

property version: str

Schematic user version. Note that this returns the title block setting which is not necessarily the actual schematic user version. If the version is set to ‘auto’, this value will return ‘<<auto>>’. To get the actual user version of the schematic use the Schematic.propertyValue() method with the ‘UserVersion’ argument. E.g.:

schematic.propertyValue('UserVersion')