Query_Lang-PCBFunctions_MembershipChecks_InNetClassInNetClass_AD
利用できる機能は、Altium 製品のアクセスレベルによって異なります。Altium Designer ソフトウェア サブスクリプション の様々なレベルに含まれる機能と、Altium 365 プラットフォーム で提供されるアプリケーションを通じて提供される機能を比較してください。
ソフトウェアの機能が見つからない場合は、Altium の営業担当者に連絡して 詳細を確認してください。
Parent page: PCB Query Functions - Membership Checks
Summary Copy Link Copied
Returns all nets (and their associated objects) that are members of the specified Net Class.
Syntax Copy Link Copied
InNetClass(ClassName : String) : Boolean/Boolean_String
Example Usage Copy Link Copied
InNetClass('Data Bus Nets')
InNetClass('Data Bus Nets') = True
InNetClass('Data Bus Nets') = 'True'
Returns all nets (and their associated objects) that are members of the Data Bus Nets
Net Class.
Not InNetClass('Address Bus Nets')
InNetClass('Address Bus Nets') = False
InNetClass('Address Bus Nets') = 'False'
Returns all objects except nets (and their associated objects) that are members of the Address Bus Nets
Net Class.
Tips Copy Link Copied
- The single quote characters (') at the start and end of the
ClassName
string are mandatory.