本文介绍了子弹风格?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个rtb,我需要用户能够在项目符号样式之间进行切换.我将如何做到这一点.我无法弄清楚,我什至看不到子弹般的音调.
I have a rtb and i need the user to be able to switch between bullet styles. How would i do this. I can not figure this out, i do not even see a bullet sytle propertie.
推荐答案
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If RichTextBox1.SelectionBullet = True Then
RichTextBox1.SelectionBullet = False
ElseIf RichTextBox1.SelectionBullet = False Then
RichTextBox1.SelectionBullet = True
End If
End Sub
这篇关于子弹风格?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!