Home > functions > gui > bm_editor > bm_edit_app_view > bm_edit_app_view_close.m

bm_edit_app_view_close

PURPOSE ^

close window

SYNOPSIS ^

function bm_edit_app_view_close(obj)

DESCRIPTION ^

 close window
 [USAGE]
    bm_edit_app_view_close(<obj>);
 [IN]
    obj : bm_edit_app_view object
 [OUT]
    none

 Copyright (C) 2011, ATR All Rights Reserved.
 License : New BSD License(see VBMEG_LICENSE.txt)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function bm_edit_app_view_close(obj)
0002 % close window
0003 % [USAGE]
0004 %    bm_edit_app_view_close(<obj>);
0005 % [IN]
0006 %    obj : bm_edit_app_view object
0007 % [OUT]
0008 %    none
0009 %
0010 % Copyright (C) 2011, ATR All Rights Reserved.
0011 % License : New BSD License(see VBMEG_LICENSE.txt)
0012 
0013 %
0014 % --- Previous check
0015 %
0016 if ~exist('obj', 'var'), error('obj is a required parameter.'); end
0017 
0018 
0019 %
0020 % --- Main Procedure
0021 %
0022 delete(obj.h);

Generated on Tue 27-Aug-2013 11:46:04 by m2html © 2005