Meilleure façon de définir une chaîne de caractères vba volumineuse - c.-à-d. Son équivalent en hérédoc?

Comment dois-je définir des grandes chaînes en VBA? Est-il une meilleure façon que de coder quelque chose comme ci-dessous?

Dim largeString as String
largeString = "This is a long block of text that I want to fill " & _
              "into a form field. I need to make sure I pay attention " & _
              "to spacing and carriage return issues while doing so. " & _
              "I also have to use quotes liberally, the concatenation " & _
              "operator, and the continuance underscore to make sure " & _
              "VBA can parse my code." & vbCr & vbCr & _
              "It's kind of a pain in the ass and I wish I could use " & _
              "a heredoc instead, letting me copy and paste the block" & _
              "of text I need from another source and shove it into " & _
              "a string."

Edit: Pouah, et il y a un 25 de continuation de ligne limite trop? Tellement belle pour l'indentation et de 80 caractères de largeur, qui seul me donne assez de place pour un couple décent paragraphes.

source d'informationauteur Oesor