Object_ElectricalType
This document is no longer available beyond version 21. Information can now be found here: Object_ElectricalType for version 25
The features available depend on your Altium product access level. Compare features included in the various levels of Altium Designer Software Subscription and functionality delivered through applications provided by the Altium 365 platform.
If you don’t see a discussed feature in your software, contact Altium Sales to find out more.
Parent page: Schematic Query Functions - Membership Checks
Summary Copy Link Copied
Returns all child objects of each pin object whose Electrical Type property complies with the Query.
Syntax Copy Link Copied
Object_ElectricalType(Parent) = ElectricalType_String
Object_ElectricalType(Parent) <> ElectricalType_String
ElectricalType_String
must be one of the strings from the following list:
'HiZ'
'Input'
'I/O'
'Open Collector'
'Open Emitter'
'Output'
'Passive'
'Power'
Example Usage Copy Link Copied
Object_ElectricalType(Parent) = 'Power'
Returns all child objects of all pin objects whose Electrical Type property is Power.
Object_ElectricalType(Parent) <> 'HiZ'
Returns all objects except child objects of pin objects whose Electrical Type property is HiZ.
Object_ElectricalType(Parent) <> '' && Object_ElectricalType(Parent) <> 'HiZ'
Object_ElectricalType(Parent) > '' && Object_ElectricalType(Parent) <> 'HiZ'
Object_ObjectKind(Parent) = 'Pin' && Object_ElectricalType(Parent) <> 'HiZ'
Returns all child objects of all pin objects, except those pin objects whose Electrical Type property is HiZ.