<< plotframe 2023 xset >>
removed >> removed > 2023 > xget

xget

retorna valores correntes do contexto gráfico

Seqüência de Chamamento

value = xget(query)

Descrição

Esta função é utilizada para se obter valores de um contexto de gráficos no tópico especificado pelo string de entrada query.

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

xget("fpf")               // Sem equivalência

Ver Também

Histórico

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.
6.1.1 xget() will be removed from the next Scilab version

<< plotframe 2023 xset >>