DgsColorPickerGetColor

From Multi Theft Auto: Wiki

This function gets the color from the color picker.

Syntax

int color1, int color2, int color3, int alpha dgsColorPickerGetColor( element colorPicker [, string colorType = "RGB" ] )

Required Arguments

  • colorPicker: The color picker you want to set.

Optional Arguments

  • colorType: The color type. Available values are as follows:
    • RGB:
      • color1: A number ranges from 0 to 255, indicates the R (red) value of the color.
      • color2: A number ranges from 0 to 255, indicates the G (green) value of the color.
      • color3: A number ranges from 0 to 255, indicates the B (blue) value of the color.
    • HSL:
      • color1: A number ranges from 0 to 360, indicates the H (hue) value of the color.
      • color2: A number ranges from 0 to 100, indicates the S (saturation) value of the color.
      • color3: A number ranges from 0 to 100, indicates the L (lightness) value of the color.
    • HSV:
      • color1: A number ranges from 0 to 360, indicates the H (hue) value of the color.
      • color2: A number ranges from 0 to 100, indicates the S (saturation) value of the color.
      • color3: A number ranges from 0 to 100, indicates the V (value) value of the color.

Returns

Returns four integers depends on color type if successful, false otherwise.

Example

DGS = exports.dgs --get exported functions from dgs

local cp = DGS:dgsCreateColorPicker("HSVRing",50,50,300,300,false)
--Alpha remains in any color type
local H,S,L,A = DGS:dgsColorPickerGetColor(cp,"HSL")
outputChatBox("H:"..H..";S:"..S..";V:"..V..";A:"..A)
local R,G,B,A = DGS:dgsColorPickerGetColor(cp,"RGB")
outputChatBox("R:"..R..";G:"..G..";B:"..B..";A:"..A)

See Also

Multi Language Supports

Animation

3D Interface

3D Text

Arrow List

Browser

Button

Check Box

Combo Box

Edit

Ellipse Detect Area

Detect Area

Grid List

Image

Memo

Label

Progress Bar

Radio Button

Scroll Bar

Scroll Pane

Switch Button

Tab Panel

Window

Plugin

Media Browser

Rounded Rectangle

Color Picker

Blur Box

Effect 3D