simetrix.TitleBlockInfo¶
- class simetrix.TitleBlockInfo¶
Bases:
objectReturn data from
Schematic.getTitleBlockInfo()method.Methods
Attributes
Author of schematic.
Company name displayed in title block.
Schematic date.
'Horizontal' or 'Vertical'
Base64 encoded image used in title block.
Notes displayed in title block
Title of schematic.
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’
- property logo: str¶
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')