Skip to content

Latest commit

 

History

History
44 lines (36 loc) · 1020 Bytes

File metadata and controls

44 lines (36 loc) · 1020 Bytes

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

Version

Availability: from MiniCAD4.0

Category