ViaDiameter
Parent page: PCB Query Functions - Fields
Summary
Returns all simple via objects whose X Size (All Layers) property complies with the Query.
Syntax
ViaDiameter : Number
Number
will follow the measurement units currently employed for the document – either Imperial (mil; 1mil = 0.001inch) or Metric (mm; 1mm = 0.001meter).
A specific option for the measurement unit can be specified – overriding the default units specified at the document level – through use of an additional measurement unit-based keyword:
AsMils(
– to specify a via diameter in mil.ViaDiameter
) : NumberAsMM(
– to specify a via diameter in mm.ViaDiameter
) : Number
Example Usage
= 40ViaDiameter
Returns all via objects that have a X Size (All Layers) property which is 40
current measurement units.
>= 0.508ViaDiameter
Returns all via objects that have a X Size (All Layers) property which is greater than or equal to 0.508
current measurement units.
AsMils(
) Between 30 And 50ViaDiameter
Returns all via objects that have a X Size (All Layers) property which is greater than or equal to 30mil
and less than or equal to 50mil
.
AsMM(
) < 1.524ViaDiameter
Returns all via objects that have a X Size (All Layers) property which is less than 1.524mm
.
Tips
- The X Size (All Layers) property is only defined for simple via objects - those with their Stack Mode set to Simple.
- In an Inspector panel the X Size (All Layers) property corresponds to the Via Diameter property, while in the Via dialog this property corresponds to the Diameter property.
- This function is an alias for the ViaSize function.