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


get_figure_handle

指定したIDの図のハンドルを取得 (obsolete)

呼び出し手順

f = get_figure_handle(figure_id)

パラメータ

figure_id

整数, 取得する図のID.

f

対応する図のハンドル.

説明

This function is obsolete and will be removed in Scilab 6.1.x. Please use findobj("figure_id",n) instead.

get_figure_handle 関数により IDが既知の図のハンドルを取得することが可能です. 指定したIDを有する図が存在する場合,この関数はそのハンドルを返します. それ以外の場合,空の行列を返します.

// いくつかの図を作成
scf(0);
scf(5);
scf(12);

// ID 5 の図のハンドルを取得
f5 = get_figure_handle(5);
// カレントの図は ID 12の図のままです
gcf()

// 存在しない図を取得
f42 = get_figure_handle(42);

参照

  • set — グラフィックエンティティオブジェクトまたは またはユーザインターフェイスオブジェクトのプロパティの値を設定する.
  • get — Gets the handle of a graphical or User Interface object, or the property's value of objects.
  • gcf — カレントグラフィックウインドウのハンドルを返す.
  • scf — カレントの図に指定する (window)
  • graphics_entities — グラフィックスエンティティデータ構造体の説明

履歴

バージョン記述
6.1.0 get_figure_handle(n) is declared obsolete. findobj("figure_id",n) is used instead.
Report an issue
<< ged handle glue >>

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:
Mon Nov 07 15:06:01 CET 2022