Skip to content

Latest commit

 

History

History
46 lines (38 loc) · 1.08 KB

File metadata and controls

46 lines (38 loc) · 1.08 KB

LimitTolerance

Description

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

Parameters

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.

Examples

VectorScript

LinearDim(-2",2",1",2",-3",0,771,771,0.75);
LimitTolerance(TRUE,FALSE,'','',-1",1");

Python

Version

Availability: from MiniCAD4.0

Category