| **Navigation:**  [[abc library reference.htm|ABC Library Reference]] > WindowResizeClass > WindowResizeClass Methods >====== Reset (resets the WindowResizeClass object) {{c6h0009.jpg|C6H0009.jpg}} ====== | [[kill shut down the windowresizeclass object .htm|{{btn_prev_n.gif|Previous page}}]][[abc library reference.htm|{{btn_home_n.gif|Return to chapter overview}}]][[resize resize and reposition controls .htm|{{btn_next_n.gif|Next page}}]] | | || **Reset, VIRTUAL** {{blk2blue.jpg|blk2blue.jpg}} The **Reset **method resets the WindowResizeClass object to conform to the window in its present state. **Implementation:** The Init method calls the Reset method. The Reset method stores the initial coordinates for the window and its controls. The WindowResizeClass object uses the stored coordinates to restore the window, establish parent-child relationships between controls, etc. **Example:** **ThisWindow.Init PROCEDURE()** **ReturnValue          BYTE,AUTO** **  CODE** ** !procedure code** **  Resizer.Init(AppStrategy:Surface,Resize:SetMinSize)** **  SELF.AddItem(Resizer)** **  Resizer.AutoTransparent=True** **  Resizer.SetParentDefaults** **  INIMgr.Fetch('BrowseMembers',QuickWindow)** **  Resizer.Resize              !Resize needed if window altered by INIMgr** **  Resizer.Reset               !Reset needed if window altered by INIMgr** **  SELF.SetAlerts()** **  RETURN ReturnValue** **See Also:**     [[init initialize the windowresizeclass object .htm|Init]]