Contact Us
Contact our corporate or local offices directly.
Parent page: PCB Query Functions - Membership Checks
Returns all component objects whose Name property complies with the Query.
InComponent(Name : String) : Boolean/Boolean_String
InComponent('U1')
InComponent('U1') = True
InComponent('U1') = 'True'
Returns all component objects whose Name property is U1.
InComponent('U1', 'U2', 'J1')
InComponent('U1', 'U2', 'J1') = True
InComponent('U1', 'U2', 'J1') = 'True'
Returns all component objects whose Name property is U1, or U2, or J1.
Not InComponent('IDC16')
InComponent('IDC16') = False
InComponent('IDC16') = 'False'
Returns all objects except component objects whose Name property is IDC16
.
InComponent('U*')
InComponent('U*') = True
InComponent('U*') = 'True'
Returns all component objects whose Name property starts with U.
Name
string are mandatory.Contact our corporate or local offices directly.