Skip to content

Latest commit

 

History

History
51 lines (42 loc) · 1.14 KB

File metadata and controls

51 lines (42 loc) · 1.14 KB

SingleTolerance

Description

Procedure SingleTolerance is used with dimensioning procedures to define a tolerance for the most recently created dimension.

PROCEDURE SingleTolerance(
				showVal     : BOOLEAN;
				boxText     : BOOLEAN;
				leader      : STRING;
				trailer     : STRING;
				limDistance : REAL);
def vs.SingleTolerance(showVal, boxText, leader, trailer, limDistance):
    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.
limDistance REAL Limit tolerance string.

Examples

VectorScript

LinearDim(-2",2",1",2",-3",0,771,770,0.75);
SingleTolerance(True,False,'approx. ','',1/16");

Python

SingleTolerance(TRUE, FALSE, 'Example', 'Example', 1.0);
vs.SingleTolerance(True, 'Example', leader, trailer, 1.0)

Version

Availability: from MiniCAD4.0

Category