Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 780 Bytes

File metadata and controls

34 lines (27 loc) · 780 Bytes

WorksheetMergeCells

Description

Merges the specified cells into a single cell.

FUNCTION WorksheetMergeCells(
				worksheet   : HANDLE;
				topRow      : INTEGER;
				leftColumn  : INTEGER;
				bottomRow   : INTEGER;
				rightColumn : INTEGER): BOOLEAN;
def vs.WorksheetMergeCells(worksheet, topRow, leftColumn, bottomRow, rightColumn):
    return BOOLEAN

Parameters

Name Type Description
worksheet HANDLE Worksheet on which function is to operate.
topRow INTEGER Top row of range to merge.
leftColumn INTEGER Left column of range to merge.
bottomRow INTEGER Bottom row of range to merge.
rightColumn INTEGER Right column of range to merge.

Version

Availability: from VectorWorks12.5

Category

  • Worksheets