Skip to content

Latest commit

 

History

History
47 lines (37 loc) · 943 Bytes

File metadata and controls

47 lines (37 loc) · 943 Bytes

SprdBorder

Description

Procedure SprdBorder determines the border settings for cells within the active worksheet.

PROCEDURE SprdBorder(
				top   : BOOLEAN;
				left  : BOOLEAN;
				bot   : BOOLEAN;
				right : BOOLEAN);
def vs.SprdBorder(top, left, bot, right):
    return None

Parameters

Name Type Description
top BOOLEAN Top border on-off setting.
left BOOLEAN Left border on-off setting.
bot BOOLEAN Bottom border on-off setting.
right BOOLEAN Right border on-off setting.

Examples

VectorScript

SprdBorder(TRUE, FALSE, TRUE, FALSE);
LoadCell(1, 1, 'This is a string');

Python

See Also

SetWSCellBorder

Version

SprdBorder is obsolete as of VectorWorks 9.0, see new SetWSCellBorder

Availability: from All Versions

Category