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

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.
However, this page did not exist in the previous stable version.

Scilabヘルプ >> Graphics > xget

xget

グラフィックコンテキストのカレントの値を取得. この関数は廃止されました.

呼び出し手順

value = xget(query)

説明

この関数は廃止されました. 代わりにScilabグラフィックオブジェクト表現を使用してください (setおよび get関数 およびgraphicsエンティティを参照).

This function is used to get values from the graphics context on the topic specified by the input string query.

value = xget("fpf")

Get as a string the floating point format for number display in contour functions. Note that value is "" when the default format is used.

Replacements

// SCILAB 3 & 4           SCILAB N > 4
// ------------           ------------
xget("window")            gcf().figure_id
xget("figure")            gcf().figure_id
xget("wpos")              gcf().figure_position
xget("wdim")              gcf().figure_size
xget("wpdim")             gcf().figure_size
xget("viewport")          gcf().viewport
xget("wresize")           gcf().auto_resize
xget("auto clear")        gcf().auto_clear

xget("hidden3d")          gca().hiddencolor
xget("clipgrf")           bool2s(gca().clip_state=="clipgrf")
xget("clipoff")           bool2s(gca().clip_state=="off")
xget("clipping")          gca().clip_box
xget("background")        gca().background
xget("foreground")        gca().foreground
xget("pattern")           gca().foreground
xget("lastpattern")       size(gcf().color_map,1)
xget("color")             gca().foreground
xget("white")             color("white")
xget("font")              [gca().font_style gca().font_size]
xget("font size")         gca().font_size
xget("dashes")            gca().line_style
xget("line mode")         gca().line_mode

参照

  • xset — グラフィックコンテキストの値を設定. この関数は廃止されました.
  • get — グラフィックエンティティまたはユーザーインターフェイスオブジェクト からプロパティの値を取得する.
  • graphics entities — グラフィックスエンティティデータ構造体の説明
  • gcf — カレントグラフィックウインドウのハンドルを返す.
  • gdf — デフォルトの図(figure)のハンドルを取得.
  • gca — カレントの軸のハンドルを返す.
  • gda — デフォルトの軸(axes)のハンドルを取得.
  • ged — Scilabグラフィックエディタ
  • getcolor — カレントのカラーマップの色を示すダイアログをオープンする

履歴

VersionDescription
5.0.1 The "alufunction" property is obsolete. It is no longer taken into account for graphical renderings. It is replaced with gcf().pixel_drawing_mode.
5.4.0 The "alufunction" is no longer supported..
6.0.0 Only the xget("fpf") syntax is now supported.
Report an issue
<< xchange Graphics xset >>

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:
Tue Feb 25 08:53:23 CET 2020