名前空間一覧 > GrapeCity.Web.Input.IMCombo 名前空間 > GcComboBox クラス : SelectedText プロパティ |
例外 | 解説 |
---|---|
System.InvalidOperationException | コントロールがUpdatePanelに配置されていません。 |
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) GcComboBox2.SelectionStart = 0 GcComboBox2.SelectionLength = 0 GcComboBox2.SelectedText = GcComboBox1.Text End Sub
private void Button1_Click(object sender, System.EventArgs e) { GcComboBox2.SelectionStart = 0; GcComboBox2.SelectionLength = 0; GcComboBox2.SelectedText = GcComboBox1.Text; }