SelectedText
字符型,返回或设置输入框中选定的文本。
示例
例如希望在某个TextBox中,同时按下Ctrl和F11键时,会在当前位置插入符号“Ω”,可设置KeyDown事件如下:
If
e.Control =
True
AndAlso
e.KeyCode = Keys.F11
Then
e.Sender.SelectedText =
"
Ω
"
e.Cancel =
True
End
If
本页地址:
http://www.foxtable.com/webhelp/topics/0740.htm