Skip to main content

TextDrawUseBox

คำอธิบาย

Toggle whether a textdraw uses a box or not.

NameDescription
textThe ID of the text textdraw to toggle the box of.
use1 to show a box or 0 to not show a box.

ส่งคืน

1: The function executed successfully.

0: The function failed to execute. This means the textdraw specified does not exist.

ตัวอย่าง

new Text:MyTextdraw;

public OnGameModeInit()
{
MyTextDraw = TextDrawCreate(100.0, 33.0, "Example TextDraw");
TextDrawUseBox(MyTextDraw, true); // Toggle box ON
return 1;
}

บันทึก

tip

If the textdraw is already shown, it must be re-shown (TextDrawShowForAll/TextDrawShowForPlayer) to show the changes of this function.

ฟังก์ชั่นที่เกี่ยวข้องกัน