オーバーロード | 解説 |
---|---|
Select(Int32,Int32) | 指定した開始位置と長さに基づいて、コントロールのテキストの範囲を選択します。 |
Select() | Activates the control. System.Windows.Forms.Controlから継承されます。 |
Select(Boolean,Boolean) | Activates a child control. Optionally specifies the direction in the tab order to select the control from. System.Windows.Forms.Controlから継承されます。 |
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinMaskedEdit Private Sub Button5_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button5.Click ' Select method selects a range of characters in the masked edit. Me.UltraMaskedEdit1.Select(1, 5) Me.UltraMaskedEdit1.Focus() End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinMaskedEdit; using System.Diagnostics; private void button5_Click(object sender, System.EventArgs e) { // Select method selects a range of characters in the masked edit. this.ultraMaskedEdit1.Select( 1, 5 ); this.ultraMaskedEdit1.Focus( ); }