如何分隔文本框中的段落?

发布于 2024-10-14 04:21:42 字数 53 浏览 5 评论 0原文

如果我有一个文本框,并且我想在其中生成一些段落,那么我想使用换行符是有意义的。有什么想法吗?

If I have a textbox, and I want to generate some paragraph into it, it makes sense I will want to use linebreaks. Any idea?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

离旧人 2024-10-21 04:21:42

对于换行符,请指定 Environment.NewLine,如

Str = "This is a line" & Environment.NewLine & " and another " & Environment.NewLine

使用两个 NewLine 进行段落分隔

Para =  Environment.NewLine & Environment.NewLine & "my para body" & Environment.NewLine &  Environment.NewLine

将文本放入 TextBox 中

myTxtbox.Text = Str

For your line break specify Environment.NewLine as in

Str = "This is a line" & Environment.NewLine & " and another " & Environment.NewLine

Use two NewLine for a paragraph separation

Para =  Environment.NewLine & Environment.NewLine & "my para body" & Environment.NewLine &  Environment.NewLine

Put the text in your TextBox

myTxtbox.Text = Str
海夕 2024-10-21 04:21:42

VB.NET 中的换行可以使用 vbcrlf 用最少的代码实现:

twoParagraphs = "Paragraph One..." & vbcrlf & vbcrlf & "Paragraph Two..."

aTextBox.Text = twoParagraphs

vbcrlf 本质上与 Environment.NewLine 相同,但特定于网络

Line breaks in VB.NET can be achieved with minimal code by using vbcrlf:

twoParagraphs = "Paragraph One..." & vbcrlf & vbcrlf & "Paragraph Two..."

aTextBox.Text = twoParagraphs

vbcrlf is essentially the same as Environment.NewLine but is specific to VB.NET

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文