Skip to content

Latest commit

 

History

History
58 lines (46 loc) · 1.75 KB

File metadata and controls

58 lines (46 loc) · 1.75 KB

SetDashStyle

Description

Procedure SetDashStyle creates a new linestyle in a VectorWorks document. Parameter swt defines whether the linestyle will be scaled with thickness, and parameter numPairs specifies the number of length pairs defining the linestyle.

The linestyle is defined by up to five black/white length pairs, which are specified in parameters pair1 through pair5. The minimum length of any given black or white parameter is 1 point, or 1/72 of an inch, and the line specification must be in pairs.

PROCEDURE SetDashStyle(
				swt      : BOOLEAN;
				numPairs : INTEGER;
				pair1    : REAL;
				pair2    : REAL;
				pair3    : REAL;
				pair4    : REAL;
				pair5    : REAL);
def vs.SetDashStyle(swt, numPairs, pair1, pair2, pair3, pair4, pair5):
    return None

Parameters

Name Type Description
swt BOOLEAN
numPairs INTEGER
pair1 REAL
pair2 REAL
pair3 REAL
pair4 REAL
pair5 REAL

Remarks

_c_, (2014.04.08): It creates a generically named dash style. Use SetDashStyleN to name the new style during creation. The dash-gap values must be in page inches. More comments on Vectorlab's [http://www.vectorlab.info/index.php?title=Index_pitfalls Index_pitfalls].

The routine can be expressed as below, whereby you'll only enter as many dashX-gapX values as needed:

SetDashStyle(scalesWithThickness: BOOLEAN; numPairs: INTEGER; dash1, gap1, dash2, gap2, dash3, gap3, dash4, gap4, dash5, gap5: REAL);

Examples

VectorScript

SetDashStyle(True, 0,1",1 /4", 1/4", 1/4");

Python

Version

Availability: from MiniCAD 4.0

Category