Saltar para o conteúdo principal
Version: v19

On Row Resize

CodePode ser chamado porDefinição
60Área 4D View ProThe height of a row is modified by a user with the mouse

Descrição

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:

PropriedadeTipoDescrição
codeinteiro longo60
descriptiontext"On Row Resize"
objectNametextNome da área 4D View Pro
sheetNametextNome da folha do evento
rangeobjectCell range of the rows whose heights have changed
headerbooleanTrue if the column header row (first row) is resized, else false

Exemplo

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