Jump to content

Get label text end x


drk

Recommended Posts

function fLabelGetPositionWithTextLength( uLabel, bRelative, sFont, nScale ) 
    if isElement( uLabel ) then 
        local nX, nY = guiGetPosition( uLabel, bRelative ) 
        return nX + dxGetTextWidth( guiGetText( uLabel ), nScale or 1.0, sFont ), nY 
    end 
    return false 
end 

It?

  
function fLabelGetPositionWithTextLength( uLabel, bRelative ) 
    if isElement( uLabel ) then 
        local nX, nY = guiGetPosition( uLabel, bRelative ) 
        return nX + guiLabelGetTextExtent( uLabel ), nY 
    end 
    return false 
end 
  

Updated.

You mean position label + text length?

Edited by Guest
Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...