PCBクエリ関数 - メンバーシップチェック
利用できる機能は、Altium 製品のアクセスレベルによって異なります。Altium Designer ソフトウェア サブスクリプション の様々なレベルに含まれる機能と、Altium 365 プラットフォーム で提供されるアプリケーションを通じて提供される機能を比較してください。
ソフトウェアの機能が見つからない場合は、Altium の営業担当者に連絡して 詳細を確認してください。
Parent page: PCB Query Functions - Membership Checks
Summary Copy Link Copied
Returns all component objects whose Name property complies with the Query.
Syntax Copy Link Copied
InComponent(Name : String) : Boolean/Boolean_String
Example Usage Copy Link Copied
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.
Tips Copy Link Copied
- The single quote characters (') at the start and end of the
Name
string are mandatory. - For each returned component object, its associated child objects are also returned.