Skip to content

Latest commit

 

History

History
50 lines (40 loc) · 1.13 KB

File metadata and controls

50 lines (40 loc) · 1.13 KB

SetPrimaryDim

Description

Procedure SetPrimaryDim sets the primary dimension options for single and dual dimensions.

PROCEDURE SetPrimaryDim(
				h         : HANDLE;
				showValue : BOOLEAN;
				boxText   : BOOLEAN;
				leader    : STRING;
				trailer   : STRING;
				precision : LONGINT);
def vs.SetPrimaryDim(h, showValue, boxText, leader, trailer, precision):
    return None

Parameters

Name Type Description
h HANDLE Handle to dimension.
showValue BOOLEAN Display dimension value flag.
boxText BOOLEAN Display box around dimension text flag.
leader STRING Leader string.
trailer STRING Trailer string.
precision LONGINT Precision setting for displayed dimension value.

Remarks

Sets dimension values that are specific to the primary portion of a dual dimension. This procedure can also be used for non-dual dimensions.

[sd 8/18/98]

Examples

VectorScript

SetPrimaryDim(dimHd,TRUE,FALSE,'Approx.','',64);

Python

Version

Availability: from MiniCAD7.0

Category