单项选择题

在窗体上有两个文本框控件和一个命令按钮,名称分别为Text1、Text2和Command1,以下程序实现的功能是当单击Command1按钮时,将把Text2控件中的文本全部选中,并把焦点设置在该文本框中。程序运行时的界面如图20-4所示,以下两空应填( )。
Private Sub Command1_Click() Text2.SelStart=0 Text2.________=Len(Text2.Text) Text2._______ End Sub

A.SelLength SetFocus
B.SelText SetFocus
C.SelLength GetFocus
D.SelText GetFocus