设在窗体上有个文本框,然后编写如下的事件过程:Private Sub Text1_KeyDown(KeyCode As Integer,Shift As Integer)Const Alt=4Const Key_F2=&H71altdown%=(Shift And Alt)>0f2down%=(KeyCode=Key_F2)If altdown% And f2down% ThenText1.Text= BBBBB End IfEnd Sub上述程序运行后,如果按【Shift+F2】,则在文本框中显示的是( )。
A. ScrollBars
B. MultiLine
C. SelText
D. SelLength