名前空間一覧 > GrapeCity.Web.Input.IMCombo 名前空間 > GcComboBox クラス : SelectionStart プロパティ |
例外 | 解説 |
---|---|
System.InvalidOperationException | コントロールがUpdatePanelに配置されていません。 |
System.ArgumentOutOfRangeException | 負の値またはTextプロパティの文字列より大きい値が設定されています。 |
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; }