resizeControl

Typemessage
DictionaryLCS
LibraryLiveCode Script
Syntax
resizeControl
Associationsfield, button, graphic, scrollbar, player, image
Summary

Sent to a control right after the user resizes it.

Introduced1.0
OSmac, windows, linux, ios, android
Platformsdesktop, server, mobile
Example
on resizeControl -- make sure a label stays at the bottom edge
  set the top of field "Label" to the bottom of me
  pass resizeControl
end resizeControl
RelatedKeyword: control
Property: height, properties, width
Message: moveStack, resizeStack
Command: revCacheGeometry
Glossary: control, handler, message, object, trap
Description

Handle the resizeControl message if you want to update other objects, or do other tasks, in response to the user resizing a control.

The resizeControl message is only sent when the user resizes a control by dragging its handles. It is not sent if a handler changes the size of a control by changing its properties (width, height, and so on).

The resizeControl message is sent after the resizing is finished. This means that you cannot prevent a control's size from being changed by trapping this message.

Tagsui