Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.4.0 - Português

Change language to:
English - Français - 日本語 - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Ajuda Scilab >> IGU > uigetcolor

uigetcolor

Opens a dialog for selecting a color.

Calling Sequence

uigetcolor()
RGB = uigetcolor([title])
RGB = uigetcolor([title,] defaultRGB)
RGB = uigetcolor([title,] defaultRed, defaultGreen, defaultBlue)
[R, G, B] = uigetcolor([title])
[R, G, B] = uigetcolor([title,] defaultRGB)
[R, G, B] = uigetcolor([title,] defaultRed, defaultGreen, defaultBlue)

Arguments

title

String: Optional argument, the title to display in the dialog. Default value is "Color Chooser".

defaultRGB

1x3 vector: the default values for Red, Green and Blue values given as a vector [red, green, blue].

defaultRed

Scalar: the default value for red.

defaultGreen

Scalar: the default value for green.

defaultBlue

Scalar: the default value for blue.

RGB

1x3 vector: the values for Red, Green and Blue values given as a vector [red, green, blue] or [] if the user cancels.

R

Scalar: the value for red or [] if the user cancels.

G

Scalar: the value for green or [] if the user cancels.

B

Scalar: the value for blue or [] if the user cancels.

Description

Creates a dialog window for selecting a color. All (default and returned) values must be in the interval [0 255].

Examples

uigetcolor()
[R, G, B] = uigetcolor([255 128 0])
RBG = uigetcolor(0, 128, 255)
RBG = uigetcolor("My color chooser", 0, 128, 255)

See Also

  • getcolor — abre um diálogo que exibe as cores no mapa de cores corrente
Report an issue
<< uicontrol IGU uigetdir >>

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 Oct 01 17:39:53 CEST 2012