Skip to main content
Version: v19

On Row Resize

CodeCan be called byDefinition
604D View Pro AreaThe height of a row is modified by a user with the mouse

Description

This event is generated when the height of a row is modified by a user in a 4D View Pro document. In this context, the event object returned by the FORM Event command contains:

PropertyTypeDescription
codelongint60
descriptiontext"On Row Resize"
objectNametext4D View Pro area name
sheetNametextName of the sheet of the event
rangeobjectCell range of the rows whose heights have changed
headerbooleanTrue if the column header row (first row) is resized, else false

Example

 If(FORM Event.code=On Row Resize)
VP SET CELL STYLE(FORM Event.range;New object("vAlign";vk vertical align top))
End if