- Scilabヘルプ
- GUI
- Borders
- Layouts
- Menus
- Tree
- about
- clipboard
- close
- consoleプロパティ
- createWindow
- exportUI
- figure
- findobj
- gcbo
- getcallbackobject
- getinstalledlookandfeels
- getlookandfeel
- getvalue
- 対話型エディタ
- loadGui
- messagebox
- printfigure
- printsetupbox
- progressionbar
- root_properties
- saveGui
- setlookandfeel
- toolbar
- toprint
- uicontrol
- uicontrolプロパティ
- uigetdir
- uigetfile
- uigetfont
- uiputfile
- usecanvas
- waitbar
- x_choices
- x_choose
- x_choose_modeless
- x_dialog
- x_matrix
- x_mdialog
Please note that the recommended version of Scilab is 2026.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プロパティは- pushbuttonuicontrolで 表示されます).
- Userdata
- Any data of any type that you want to ascribe to the console. 
- Tag
- 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
参照
- root_properties — ルートオブジェクトプロパティの説明.
- usecanvas — Scilabグラフィックで使用されるメイン要素を取得/設定.
- system_setproperty — キーおよび値で指定したシステムプロパティを設定.
- getsystemmetrics — Retrieves the specified system metric or system configuration setting (Windows only)
- setlookandfeel — 現在のルックアンドフィールのデフォルト値を設定.
- uicontrol — グラフィックユーザーインターフェイスオブジェクトを作成
| Report an issue | ||
| << close | GUI | createWindow >> |