How many lines were written?
-
Hello everyone :-)
If I use
Graphics.drawMultiLineText()
, is there any way to find out how many lines the written text needs?Thank you very much
Oli -
@Oli-Ullmann since you need to use \n, you can use a string variable which you're then plugging into the method call (as opposed to just writing it directly in the argument) and simply count the number of backslashes in the string
-
@aaronventure I think with multiline text it automatically splits the text without the need for a return character.
-
@d-healey but you can use it, and then use it to count the number of lines.
-
@aaronventure But the point of using
drawMultilineText
is you don't know how many lines you want - you don't know where you need to break, you want it to happen automatically based on the size of the rectangle and font.If you're manually putting in line breaks then you don't need to count them because you know how many you have, and you should probably use the markdown renderer instead.
HiseSnippet 1010.3ocsVstaZbDEdVr2nXZSUiTe.FwufJDEbrM0JpsNFa2fpwAUbRqTUTzvtGXG4YmYyLm01np7.02t9FzdlcACt1xIAoxOVMmqy2dt7sLzZh.myXYAUOeVFvB9xvQyzXRuDgTy5eDK3qBGHbHX4kpNbVlv4fXVPvF+rWQvVaxJ982+zgBkPGAKUwXuwHifSkoRbo1gG7KRk5DQLbtLcEu24f9QFcOixjS3Yiv1rLQzEhovYBuaUBYuT3RXAeaX616tKDsc2chmPG2SPOf82e79c51sy9c1dumMt63ts8H4QGGKQicDJPvQI8PS7rQIlqzkWvajN4XE3E5vFQ2boZVuDoJd3hhiiwB1b3xR0FkkpuIbfLVdi9kkrutv.eYDqVzBp7PPpymAjBVARaVBomFNJxJyvkV734KB6qoN3DAUQVEJk9xp7WUB6YHOzXqTwEvIVR3lHpuW61M4ziFOuZUp+3P9kBKenPCpN7efuHxo.1yjlYzjP8Zklq4io7XKGfCoBD9qlbTpg5Sx0QnznqOsQ0+r5VSaMgFJdgRUub.v0JVXuXpElQ4fr57o2a3F6WkHQvar5Vd.gv0HAmZmZrPJWl4xS4wjqVtShbZBBax8vGhP.ysbQrLS5hj5obPIIiTQgBfCxbWpIlxG8xX4RcD0Kiy0HOG4JwXJ8b.KSMvSES0BtPIeetnE+0HGzxTJ27To+vkjnHsI+84RGWabnMOlCWC1HI09o2ddtRIRiLkY16D0982TQJkYjybPP.Okvjo7EftJrUshW7oshshqFjqP4oTQ8bpFT2WHZx+CpogIRmuu7RPNMAq2f+c7se6R0+lLFSp2nIulBlf0Zx6TTM+Pimun2vM5yLH7Jc8hdT0OTk+eMMYx8ZyOUXMJEXuWy9Ee6CEXccd5Xv1jl0T4vMNRC52d64QeZaOQkCoq3nQ2WKwWkAykOwnh8aE9y2cWiMeJmN859GIPge8atNxuLvhRObBNBtjH7JWF2J7HvcAZxJ7c9pAAYrv5SVrp5WOXR5pebX4pB65kbhGcvrkB+3AW4aYrfv.a.ikTzV8R5BZ06vFP7Pl3bk.uM4jm1dtApleKFA+Vul1WlsJs9mAiU6Gjw5SEhOMbnDiRteLV4dvH0M9+.iy44eR3wSlPzFKA3lgm76qKo9G45KoGmNPfVIMGDdVd5HhtKBnaWSSGNe+thehrTtsW1WAFA53Bg+g9M2XGubvbicVXjkJhrl2EUto4+RxiKzPXRW7k1snO4Sx7NrhsuUqyoDY36hhtcptSfautA9r0MvcV2.2ccCbu0Mvtqafe+GOP++63E4nIsbsgwFL73B5pffi0BZBrXZk8u75dWqI
-
@d-healey You're completely right, somehow I missed the point.
Hmm, there's
Graphics.getStringWidth()
, you can put in your string, get the width and divide it by the text area width. Though it won't break the words properly...Maybe you can come up with an algo that loops through the string checking the length word by word, and when the total width at that point becomes more than maxWidth of the text method, then you can guess that it'll break the line at that word, and start counting the string again from that word onward until you get to another point where you have more width than maxWidth.
-
@d-healey
Thank you. I will try the markdown renderer.@aaronventure
There is alsoEngine.getStringWidth
. I had also considered solving the problem with a bit of math. I probably won't be able to avoid it. Thanks for your ideas! :-) -
@Oli-Ullmann Perhaps there is another solution, why do you want to know the number of lines?
-
@Oli-Ullmann yes but the Graphics method takes in your current font for accurate string width