DgsRoundRectSetColorOverwritten

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

This function sets whether the color of rounded 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 (Set to false to use the color passed from dx draw function, set to true to force shader color instead of the color of dx draw function).

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(50,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,false)  --Make the color depends on image's

--This will gives a red round rectangle
local rndRect2 = DGS:dgsCreateRoundRect(50,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

Custom Cursor Functions

Multi Language Supports

Animation

3D Element

3D Interface

3D Line

3D Image

3D Text

Browser

Button

Check Box

Combo Box

Custom Renderer

Edit

Detect Area

Drag'N Drop

Grid List

Image

Memo

Menu

Label

Layout

Line

Progress Bar

Radio Button

Scale Pane

Scroll Bar

Scroll Pane

Selector

Style

Switch Button

Tab Panel

Window

Plugin

Blur Box

Canvas

Chart

Circle

Color Picker

Effect 3D

Gradient

Mask

Media Browser

Nine Slice

Object Preview Supports

Paste Handler

QRCode

Remote Image

Rounded Rectangle

Screen Source

SVG

Tooltips