Main Content

MinimizeCommandWindow

オートメーション サーバー ウィンドウのサイズを最小化する

概要

IDL メソッド シグネチャ

HRESULT MinimizeCommandWindow(void)

Microsoft Visual Basic クライアント

MinimizeCommandWindow

MATLAB クライアント

MinimizeCommandWindow(h)

説明

MinimizeCommandWindow(h) は、ハンドル h に関連付けられたサーバー ウィンドウを最小化し、非アクティブにします。

サーバー ウィンドウが既に最小化されている場合は、MinimizeCommandWindow は何も行いません。

すべて展開する

この例では、MATLAB オートメーション サーバーでコマンド ウィンドウを最小化および最大化する方法を説明します。次のコードからアプリケーションを作成します。

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

この例では、MATLAB オートメーション サーバーでコマンド ウィンドウを最小化および最大化する方法を説明します。次のコードからアプリケーションを作成します。

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

バージョン履歴

R2006a より前に導入