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で 表示されます).- 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 >> |