Query_Lang-PCBFunctions_AttributeChecks_IsRoundPadShapeOnLayerIsRoundPadShapeOnLayer_AD
软件的功能取决于您购买的Altium产品级别。您可以比较Altium Designer软件订阅的各个级别中包含的功能,以及通过Altium 365平台提供的应用程序所能实现的功能。
如果您在软件中找不到某个讨论过的功能,请联系Altium销售团队以获取更多信息。
Parent page: PCB Query Functions - Attribute Checks
Summary Copy Link Copied
Returns all pad objects with a round pad shape on the specified layer.
Syntax Copy Link Copied
IsRoundPadShapeOnLayer(Layer : String) : Boolean/Boolean_String
Example Usage Copy Link Copied
IsRoundPadShapeOnLayer('Top Layer')
IsRoundPadShapeOnLayer('Top Layer') = True
IsRoundPadShapeOnLayer('Top Layer') = 'True'
Returns all pad objects with a round pad shape on the Top Layer.
Not IsRoundPadShapeOnLayer('Bottom Layer')
IsRoundPadShapeOnLayer('Bottom Layer') = False
IsRoundPadShapeOnLayer('Bottom Layer') = 'False'
Returns all objects except pad objects with a round pad shape on the Bottom Layer.
Tips Copy Link Copied
- The single quote characters (') at the start and end of
Layer
are mandatory.