Reputation: 126
Is there any way to put line break in between two messages in one prompt of particular field in Microsoft FormFlow for creating bot?
This is my code statement for field "Organisation". I want to put line break between two Messages in one prompt.
[Prompt("Nice to meet you. Can I know name of your Organization? {||}"
String organisation;
1.Nice to meet you.
2.Can I know name of your Organisation?
I want to put new line between this two messages. How would I do that?
Upvotes: 0
Views: 143
Reputation: 14787
Just update your prompt to include the new line code. I tested the following and worked for me:
[Prompt("Nice to meet you. \n\n Can I know name of your Organization? {||}")]
Upvotes: 1