Version

Select Method

Selects range of text in the control, based on the specified starting position and selection length.
Overload List
OverloadDescription
Select(Int32,Int32)Selects range of text in the control, based on the specified starting position and selection length.  
Select(Boolean,Boolean)Activates a child control. Optionally specifies the direction in the tab order to select the control from. (Inherited from System.Windows.Forms.Control)
Select()Activates the control. (Inherited from System.Windows.Forms.Control)
Example
Following code selects 5 characters starting from the second character.

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( );
}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also