====== SIZE event ====== ==== Description ==== Occurs when a window's size or position has changed. ==== Syntax ==== //bforward// = **SIZE**(//ctrlentID//, //ctrlclassID//, //x//, //y//, //width//, //height//) ==== Parameters ==== SIZE accepts arguments for the following parameters. ^Parameter^Description^ |//CtrlentID//|Has the format //WindowName//.//ControlName//, where //WindowName// is the identifier of the window that contains the affected control, and //ControlName// is the identifier of that control. Notice that a period separates the two values.| |//CtrlclassID//|The type of control. Possible values are:\\ \\ __Type__ - __Description__\\ ICON - Icon.\\ WINDOW - Window.| |//X//|Horizontal distance from origin.| |//Y//|Vertical distance from origin.| |//Width//|Width of window.| |//Height//|Height of window.| ==== Returns ==== True or false. If false, then program execution returns to the calling procedure. If true, then event processing goes to the next level. ==== See Also ==== [[size|SIZE property]] ==== Remarks ==== The origin in Windows is the upper left corner of the screen. ** **