简体   繁体   中英

Line break in between two messages in one prompt of particular field in Microsoft FormFlow

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?

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? {||}")]

在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM