Procedure LimitTolerance is used with dimensioning procedures to define a tolerance for the most recently created dimension object.
PROCEDURE LimitTolerance(
showVal : BOOLEAN;
boxText : BOOLEAN;
leader : STRING;
trailer : STRING;
lowDistance : REAL;
hiDistance : REAL);def vs.LimitTolerance(showVal, boxText, leader, trailer, lowDistance, hiDistance):
return None| Name | Type | Description |
|---|---|---|
| showVal | BOOLEAN | Dimension text display flag. |
| boxText | BOOLEAN | Boxed text display flag. |
| leader | STRING | Dimension leader text string. |
| trailer | STRING | Dimension trailer text string. |
| lowDistance | REAL | Tolerance value text string. |
| hiDistance | REAL | Tolerance value text string. |
LinearDim(-2",2",1",2",-3",0,771,771,0.75);
LimitTolerance(TRUE,FALSE,'','',-1",1");LimitTolerance(TRUE, FALSE, 'Example', 'Example', 1.0, 2.0);vs.LimitTolerance(True, 'Example', leader, trailer, 1.0, 2.0)Availability: from MiniCAD4.0