Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.2 - 日本語

Change language to:
English - Français - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilabヘルプ >> GUI > consoleプロパティ

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 >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Thu Feb 14 15:02:16 CET 2019