Lumaktaw patungo sa pangunahing content

TextDrawGetBackgroundColor

warning

This function was added in omp v1.1.0.2612 and will not work in earlier versions!

Description

Gets the background color of a textdraw.

NameDescription
Text:textidThe ID of the textdraw to get the background color of.

Returns

Returns the background color of the textdraw.

Examples

new Text:gMyTextdraw;

public OnGameModeInit()
{
gMyTextdraw = TextDrawCreate(123.0, 123.0, "Example");
TextDrawSetOutline(gMyTextdraw, 1);
TextDrawBackgroundColor(gMyTextdraw, 0xFF0000FF);

new backgroundColor = TextDrawGetBackgroundColor(gMyTextdraw);
// backgroundColor = 0xFF0000FF
return 1;
}