Jump to content

Recommended Posts

Posted

Hello guys,

Is there a style that I can apply to a text label, so as to automatically wrap the text as if I had used @CRs ?

Thanks.

  • Moderators
Posted

erabus,

Labels wrap their content automatically - all you have to do is create them big enough to fit the text: :blink:

#include <GUIConstantsEx.au3>

$stext = "I am a very long long long long long long long long long long line"

$hGUI = GUICreate("Test", 500, 500)

$hLabel = GUICtrlCreateLabel($sText, 10, 10, 100, 60)

GUISetState()

While 1
    Switch GUIGetMsg()
        Case $GUI_EVENT_CLOSE
            Exit
    EndSwitch
WEnd

If you want to know how big a label must be to fit a given text in a given font, look at the StringSize UDF in my sig. ;)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Posted (edited)

Oh, never tried to be honest... I was just playing around with Koda and it doesn't seem to support this. Good to know, thanks!

I 've already checked this UDF, great job must say! :blink:

Edited by erebus
  • Moderators
Posted

erebus,

Thanks! :blink:

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

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...