Command PV SET RANGE BORDER

4D View

PV SET RANGE BORDER

version 6.8


PV SET RANGE BORDER (area; left; top; right; bottom)

ParameterTypeDescription
areaLongint4D View area
leftLongintLeft cell column number
topLongintTop cell row number
rightLongintRight cell column number
bottomLongintBottom cell row number

Description

The PV SET RANGE BORDER command applies the border set using PV SET BORDER STYLE to the specified range of cells defined by the left, top, right, and bottom parameters:

For more information on ranges, refer to the PV Selection, Introduction section.

Example

In a 4D View area, we want to trace a light blue horizontal double-line at the bottom of a table containing 12 rows entered in columns A and B:


   PV SET BORDER STYLE (Area;pv border edge top;pv border style 111;
                                    PV Index to color (Light blue))  `Border style and color
   PV SET RANGE BORDER (Area;1;12;2;12) `Underline the bottom of the range

See Also

PV SET BORDER STYLE.