Skip to content

Latest commit

 

History

History
67 lines (57 loc) · 1.68 KB

File metadata and controls

67 lines (57 loc) · 1.68 KB

DoubleFixedTolerance

Description

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

PROCEDURE DoubleFixedTolerance(
				showVal : BOOLEAN;
				boxText : BOOLEAN;
				leader  : STRING;
				trailer : STRING;
				topStr  : STRING;
				botStr  : STRING);
def vs.DoubleFixedTolerance(showVal, boxText, leader, trailer, topStr, botStr):
    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.
topStr STRING Tolerance value text string.
botStr STRING Tolerance value text string.

Examples

VectorScript

LinearDim(-2",2",1",2",-3",0,771,771,0.75);
DoubleFixedTolerance(TRUE,FALSE,'','','yes','no');
{defines a dimension with a double fixed tolerance}

Python

vs.LinearDim(-2,2,1,2,-3,0,771,771,0.75)
vs.DoubleFixedTolerance(True,False,'','','yes','no')
#{defines a dimension with a double fixed tolerance}
DoubleFixedTolerance(TRUE, FALSE, 'Example', 'Example', 'Example', 'Example');
import vs

# Procedure DoubleFixedTolerance is used with dimensioning procedures to
# define a tolerance for the most recently created dimension object.
showVal = True
boxText = 'Example text'
leader = 'Example'
trailer = 'Example'
topStr = 'Example'
botStr = 'Example'

vs.DoubleFixedTolerance(showVal, boxText, leader, trailer, topStr, botStr)

Version

Availability: from MiniCAD4.0

Category