consoleオブジェクトプロパティの説明.
このオブジェクトはget(0)
をコールする際に
返され,ハンドルおよびuicontrolのパラメータを修正できるようになります.Consoleプロパティ:
論理値または文字列
デフォルトのメニューを含む図の全ての子ハンドル の表示を管理.
デフォルト値は "off"
です.
論理値または文字列
uicontrolのレンダリングを管理.
デフォルト値は"off"
で,
uicontrolのルックアンドフィールは
オペレーティングシステムにより管理されます.
この値を"on"
または
%T
に設定すると,
uicontrolは,
古いTKのルックアンドフィールになります.
論理値または文字列
uicontrolプロパティの表示を管理.
デフォルト値は"off"
で,
Java側で使用されるuicontrolプロパティのみが
表示されます.
この値を"on"
または
%T
に設定すると,
全ての利用可能なプロパティが表示されます.
(例えば,ListboxTop
プロパティは
pushbutton
uicontrolで
表示されます).
Any data of any type that you want to ascribe to the console.
Single string, that can be used as a console custom text id.
f=gcf() // Do no display hidden handles c = get(0); set(c, "ShowHiddenHandles", "on"); f=gcf() // Show menu handles as children h=uicontrol(); // Button with OS look & feel set(c, "UseDeprecatedSkin", "on"); h=uicontrol(); // Button with old TK look & feel h=uicontrol() // Minimal display of properties set(c, "ShowHiddenProperties", "on"); h=uicontrol() // Full display of properties | ![]() | ![]() |