Main Content

MinimizeCommandWindow

Minimize size of Automation server window

Synopsis

IDL Method Signature

HRESULT MinimizeCommandWindow(void)

Microsoft Visual Basic Client

MinimizeCommandWindow

MATLAB Client

MinimizeCommandWindow(h)

Description

MinimizeCommandWindow(h) minimizes the window for the server attached to handle h, and makes it inactive.

If the server window was already in a minimized state, MinimizeCommandWindow does nothing.

Examples

expand all

This example shows how to minimize and maximize the command window in a MATLAB Automation server. Create an application from the following code.

type adjustcommandwindow.vb
Dim Matlab As Object

Matlab = CreateObject("matlab.application")
Matlab.MinimizeCommandWindow

'Now return the server window to its former state on 
'the desktop and make it the currently active window.

Matlab.MaximizeCommandWindow

This example shows how to minimize and maximize the command window in a MATLAB Automation server. Create an application from the following code.

type adjustcommandwindow.vba
Dim Matlab As Object

Set Matlab = CreateObject("matlab.application")
Matlab.MinimizeCommandWindow

'Now return the server window to its former state on 
'the desktop and make it the currently active window.

Matlab.MaximizeCommandWindow

Version History

Introduced before R2006a