This is the legacy 4D documentation web site. Documentations are progressively being moved to developer.4d.com

Home

 
4D v19
VP SET ROW ATTRIBUTES

VP SET ROW ATTRIBUTES 


 

VP SET ROW ATTRIBUTES ( rangeObj ; propertyObj ) 
Parameter Type   Description
rangeObj  Object in Range of rows
propertyObj  Object in Object containing row properties

The VP SET ROW ATTRIBUTES command applies the attributes defined in the propertyObj to the rows in the rangeObj.

In the rangeObj, pass an object containing a range. If the range contains both columns and rows, attributes are applied only to the rows.

The propertyObj parameter lets you specify the attributes to apply to the rows in the rangeObj. These attributes are:

 

Property  Type  Description 
height number Row height expressed in pixels 
pageBreak  boolean  True to insert a page break before the first row of the range, else false
visible boolean  True if the row is visible, else false 
resizable  boolean  True if the row can be resized, else false 
header  text  Row header text

 

Example  

To change the size of the second row and set the header, the following code:

 

 C_OBJECT($row;$properties)
 
 $row:=VP Row("ViewProArea";1)
 $properties:=New object("height";75;"header";"June")
 
 VP SET ROW ATTRIBUTES($row;$properties)

will result in:



See also 

VP Get column attributes
VP Get row attributes
VP SET COLUMN ATTRIBUTES

 
PROPERTIES 

Product: 4D
Theme: 4D View Pro Language
Number: 9910

This command can be run in preemptive processes

 
PAGE CONTENTS 
 
HISTORY 

Created: 4D v18 R2

 
ARTICLE USAGE

4D View Pro Reference ( 4D v19)