Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 1.12 KB

File metadata and controls

38 lines (31 loc) · 1.12 KB

SetWSCellWrapTextFlag

Description

Sets the wrap text state of cells in the referenced worksheet.

SetWSCellWrapTextFlag allows wrap text to be set for a range of cells. To set wrap text in a single cell, specify identical values for the top/bottom and left/right range boundaries. If the wrap text flag is "TRUE" in a cell, text will wrap at the cell border

PROCEDURE SetWSCellWrapTextFlag(
				worksheet    : HANDLE;
				topRow       : INTEGER;
				leftColumn   : INTEGER;
				bottomRow    : INTEGER;
				rightColumn  : INTEGER;
				wrapTextFlag : BOOLEAN);
def vs.SetWSCellWrapTextFlag(worksheet, topRow, leftColumn, bottomRow, rightColumn, wrapTextFlag):
    return None

Parameters

Name Type Description
worksheet HANDLE Handle to worksheet
topRow INTEGER Top row of cell range
leftColumn INTEGER Left column of cell range
bottomRow INTEGER Bottom row of cell range
rightColumn INTEGER Right column of cell range
wrapTextFlag BOOLEAN Wrap text flag to be set

Version

Availability: from VectorWorks12.0

Category