| **Navigation:**  [[abc library reference.htm|ABC Library Reference]] > QueryVisualClass > QueryVisualClass Methods >====== Kill (shut down the QueryVisual object) {{c6h0009.jpg|C6H0009.jpg}} ====== | [[init initialize the queryvisual object .htm|{{btn_prev_n.gif|Previous page}}]][[abc library reference.htm|{{btn_home_n.gif|Return to chapter overview}}]][[overrideresize override resize strategy of visual query elements .htm|{{btn_next_n.gif|Next page}}]] | | || **Kill, DERIVED, PROC** {{blk2blue.jpg|blk2blue.jpg}} The **Kill** method frees any memory allocated during the life of the object and performs any other required termination code. Kill returns a value to indicate the status of the shut down. **Implementation:** Kill sets the Dead property to True and returns Level:Benign to indicate a normal shut down. If the Dead property is already set to True, Kill returns Level:Notify to indicate it is taking no additional action. Typically, the Kill method is paired with the Init method, performing the converse of the Init method tasks. Return value EQUATEs are declared in ABERROR.INC. **Return Data Type:**     BYTE **Example:** **ThisWindow.Kill PROCEDURE()** **CODE** **IF PARENT.Kill() THEN RETURN Level:Notify.** **IF FilesOpened** **  Relate:Defaults.Close** **END** **IF SELF.Opened** **  INIMgr.Update('Main',AppFrame)** **END** **GlobalResponse = CHOOSE(LocalResponse=0,RequestCancelled,LocalResponse)** **See Also:     **[[init initialize the queryvisual object .htm|Init]]