SetImagePositionBJ

Parameters
whichImage image
where location
zOffset real
comment

See: SetImagePosition. The only difference: takes a location instead of X, Y coordinates.

patch

1.18a

Source
Blizzard.j
return type
nothing
Source code
function SetImagePositionBJ takes image whichImage, location where, real zOffset returns nothing
    call SetImagePosition(whichImage, GetLocationX(where), GetLocationY(where), zOffset)
endfunction