- Scilabヘルプ
- GUI
- Borders
- Layouts
- Tree
- about
- addmenu
- clipboard
- close
- consoleプロパティ
- createWindow
- delmenu
- exportUI
- figure
- findobj
- gcbo
- getcallbackobject
- getinstalledlookandfeels
- getlookandfeel
- getvalue
- 対話型エディタ
- loadGui
- messagebox
- printfigure
- printsetupbox
- progressionbar
- root_properties
- saveGui
- setlookandfeel
- setmenu
- toolbar
- toprint
- tree_show
- uicontextmenu
- uicontrol
- uicontrolプロパティ
- uigetcolor
- uigetdir
- uigetfile
- uigetfont
- uimenu
- uimenuプロパティ
- uiputfile
- unsetmenu
- usecanvas
- waitbar
- x_choices
- x_choose
- x_choose_modeless
- x_dialog
- x_matrix
- x_mdialog
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
consoleプロパティ
consoleオブジェクトプロパティの説明.
説明
このオブジェクトはget(0)
をコールする際に
返され,ハンドルおよびuicontrolのパラメータを修正できるようになります.
- Consoleプロパティ
- ShowHiddenHandles:
論理値または文字列
デフォルトのメニューを含む図の全ての子ハンドル の表示を管理.
デフォルト値は
"off"
です.- UseDeprecatedSkin:
論理値または文字列
uicontrolのレンダリングを管理.
デフォルト値は
"off"
で, uicontrolのルックアンドフィールは オペレーティングシステムにより管理されます.この値を
"on"
または%T
に設定すると, uicontrolは, 古いTKのルックアンドフィールになります.- ShowHiddenProperties:
論理値または文字列
uicontrolプロパティの表示を管理.
デフォルト値は
"off"
で, Java側で使用されるuicontrolプロパティのみが 表示されます.この値を
"on"
または%T
に設定すると, 全ての利用可能なプロパティが表示されます. (例えば,ListboxTop
プロパティはpushbutton
uicontrolで 表示されます).
例
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
参照
- uicontrol — グラフィックユーザーインターフェイスオブジェクトを作成
Report an issue | ||
<< close | GUI | createWindow >> |