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


gcf

カレントグラフィックウインドウのハンドルを返す.

呼び出し手順

h = gcf()

引数

h

ハンドル.

説明

このルーチンはカレントのウインドウのハンドルを返します.

f=gcf(); // 図を作成
f.figure_size= [610,469]/2;
f.figure_name= "Foo";

f=figure(); // 図を作成
h=uicontrol(f,"style","listbox","position", [10 10 150 160]); // listboxを作成
set(h, "string", "item 1|item 2|item3");// リストに代入
set(h, "value", [1 3]); // リストの item1 と item3 を選択
gcf()

scf(0); // グラフィックウインドウ 0 をカレントの図に指定
gcf()  // カレントのウインドウのグラフィックハンドルを返す

figure(f) // ウインドウ f を作成, カレントの図に指定
gcf() // カレントのウインドウのグラフィックハンドルを返す
Report an issue
<< figure_properties figure_operations gdf >>

Copyright (c) 2022-2024 (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 Oct 24 11:17:42 CEST 2024