DgsRoundRectSetColorOverwritten

From Multi Theft Auto: Wiki

This function sets whether the color of round rectangle will overwrite the color of dx functions.

Syntax

bool dgsRoundRectSetColorOverwritten( element rndRect, bool isOverwritten )

Required Arguments

  • rndRect: A dgs rounded rectangle element.
  • isOverwritten: A bool of the the overwritten state of the round rectangle.

Returns

Returns true if successful, false otherwise.

Example

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

--This will gives a white round rectangle
local rndRect1 = DGS:dgsCreateRoundRect(1,tocolor(255,255,255,255))  --Create a white Rounded Rectangle
local image1 = DGS:dgsCreateImage(200,200,400,100,rndRect1,false,tocolor(255,0,0,255))  --Apply it to the dgs image
DGS:dgsRoundRectSetColorOverwritten(rndRect1,true)  --Set Overwritten

--This will gives a red round rectangle
local rndRect2 = DGS:dgsCreateRoundRect(1,tocolor(255,255,255,255))  --Create another white Rounded Rectangle
local image2 = DGS:dgsCreateImage(200,200,400,100,rndRect2,false,tocolor(255,0,0,255))  --Apply it to the dgs image

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