CreateTextTagLocBJ

Parameters
sstring
loclocation
zOffsetreal
sizereal
redreal
greenreal
bluereal
transparencyreal
comment
patch

1.07

Source
Blizzard.j (suggest an edit or discuss on Github)
return type
texttag
Source code
function CreateTextTagLocBJ takes string s, location loc, real zOffset, real size, real red, real green, real blue, real transparency returns texttag
    set bj_lastCreatedTextTag = CreateTextTag()
    call SetTextTagTextBJ(bj_lastCreatedTextTag, s, size)
    call SetTextTagPosBJ(bj_lastCreatedTextTag, loc, zOffset)
    call SetTextTagColorBJ(bj_lastCreatedTextTag, red, green, blue, transparency)

    return bj_lastCreatedTextTag
endfunction