monitor_resize event
Occurs every time a connected Monitor resizes, for example when a player places or destroy Monitor blocks.
  | 
  |||
| Notifies the user when a connected Monitor has been resized. | |||
| Code | <nowiki>
while true do
  local event, peripheral_name = os.pullEvent("monitor_resize")
  local x, y = peripheral.call(peripheral_name, "getSize")
  print("Monitor", peripheral_name, "has been resized to", x, ",", y)
end
    </nowiki>
 | 
    ||
| monitor_resize Event  | |
|---|---|
Returns
  | |
| Source | CC:Tweaked | 
    This article is issued from Computercraft. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.