Query_Lang-PCBFunctions_Fields_PasteMaskExpansionModePasteMaskExpansionMode_AD
Altium 제품에 접근할 수 있는 레벨에 따라 사용할 수 있는 기능이 달라집니다. 다양한 레벨의 Altium Designer Software Subscription에 포함된 기능과 Altium 365 플랫폼에서 제공하는 애플리케이션을 통해 제공되는 기능을 비교해보세요.
소프트웨어에서 논의된 기능을 찾을 수 없는 경우, Altium 영업팀에 문의하여 자세한 정보를 확인해주세요.
Parent page: PCB Query Functions - Fields
Summary Copy Link Copied
The paste mask expansion distance for arcs, fills, regions and tracks can be determined either by relevant Paste Mask Expansion design rules, or manually, by defining an expansion value as part of the object's properties. Alternatively, no masking can be employed for these objects. These three modes are determined by the object's Paste Mask Expansion Mode property. This function returns arc, fill, region and track objects whose Paste Mask Expansion Mode property complies with the Query.
Syntax Copy Link Copied
PasteMaskExpansionMode : ExpansionMode_String
ExpansionMode_String
must be one of the following strings:
'None'
'From Rule'
'Manual'
Example Usage Copy Link Copied
PasteMaskExpansionMode = 'Manual'
Returns all arc, fill, region and track objects whose Paste Mask Expansion Mode property is set to Manual
, as well as pad objects whose Paste Mask Override property is enabled.
PasteMaskExpansionMode
= 'From Rule'
Returns all arc, fill, region and track objects whose Paste Mask Expansion Mode property is set to From Rule
, as well as pad objects whose Paste Mask Override property is disabled.
PasteMaskExpansionMode
= 'None'
Returns all objects except pad objects, and arc, fill, region and track objects whose Paste Mask Expansion Mode property is set to either From Rule
, or Manual
.
PasteMaskExpansionMode
<> 'Manual'
Not (
= 'Manual')PasteMaskExpansionMode
Returns all objects except arc, fill, region and track objects whose Paste Mask Expansion Mode property is set to Manual
, and pad objects whose Paste Mask Override property is enabled.
PasteMaskExpansionMode
<> 'From Rule'
Not (
= 'PasteMaskExpansionMode
From Rule
')
Returns all objects except arc, fill, region and track objects whose Paste Mask Expansion Mode property is set to From Rule
, and pad objects whose Paste Mask Override property is disabled.
PasteMaskExpansionMode
<> 'None'
Not (
= 'PasteMaskExpansionMode
None
')
Returns all pad objects, as well as arc, fill, region and track objects whose Paste Mask Expansion Mode property is set to either From Rule
, or Manual
.
Tips Copy Link Copied
- The Paste Mask Expansion Mode property is only defined for arc, fill, region, and track objects.
- The single quote characters (') at the start and end of
ExpansionMode_String
are mandatory.