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ヘルプ >> Graphics > figure_operations > gcf

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-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:15 CET 2019