www.gusucode.com > mbcguitools 工具箱 matlab 源码程序 > mbcguitools/@mbcwidgets/@javawindow/setSize.m

    function setSize(obj, Size)
%SETSIZE Set the window's size
%
%   SETSIZE(OBJ, SIZE) sets the size of the contained window.

%   Copyright 2006 The MathWorks, Inc.


obj.Peer.setSize(Size(1), Size(2));