vbnet删除选择点
时间: 2023-07-16 17:13:19 浏览: 112
如果您想删除文本框或富文本框中选定的文本,则可以使用以下代码:
```vbnet
If TextBox1.SelectionLength > 0 Then
TextBox1.SelectedText = ""
End If
If RichTextBox1.SelectionLength > 0 Then
RichTextBox1.SelectedText = ""
End If
```
这个代码段首先检查文本框或富文本框中是否有文本被选定。 如果选择了文本,则使用 `SelectedText` 属性将其替换为空字符串,从而将其删除。
阅读全文