How to set space between lines in a rdlc textbox?

suraj92291suraj92291 Member Posts: 49
edited 2015-05-13 in NAV Three Tier
Hi experts,

How to set space between lines in a rdlc textbox?. I have set Line spacing : 5pt in Text box properties but i have not seen any difference. I have to print text on pre-printed stationary.



any help will be greatly appreciate.



Thanks & Regards,

Suraj
“Any fool can know. The point is to understand.”
― Albert Einstein

Comments

  • SpectrezSpectrez Member Posts: 2
    Without having seen the problem, this should do the job.

    System.Environment.NewLine

    so
    =Fields!CustomerAddress2.Value + System.Environment.NewLine + Fields!CustomerAddress2.Value
    
  • suraj92291suraj92291 Member Posts: 49
    Hi,

    Thanks for the reply.

    The code you have written is for, to start second parameter from newline i guess. But i am not looking for it. I have to set space between lines in a textbox. E.g. if i have string with length 100 & my text box size is 60 then the string will split in 60-40. 60 length string in first line & rest of the 40 length string in second line. I want to set space between in this two lines. As i have to print this string in pre-printed stationary i have to make space between lines.

    default: **** FIVE CRORE TWELVE LAKH FIFTY EIGHT THOUSAND FOUR
    HUNDRED RUPEES AND ZERO

    want to: **** FIVE CRORE TWELVE LAKH FIFTY EIGHT THOUSAND FOUR

    HUNDRED RUPEES AND ZERO

    Thanks & Regards,
    Suraj
    “Any fool can know. The point is to understand.”
    ― Albert Einstein
  • SpectrezSpectrez Member Posts: 2
    if thats the issue then i think your best bet is to try and crank up the line spacing and see if you can find a number that matches the space you are looking for.
Sign In or Register to comment.