SIL.FieldWorks.Common.Framework.DetailControls.StringSlice.StringSliceView.SelectAt C# (CSharp) Méthode

SelectAt() public méthode

Make a selection at the specified character offset.
public SelectAt ( int ich ) : void
ich int
Résultat void
			public void SelectAt(int ich)
			{
				CheckDisposed();
				try
				{
					RootBox.MakeTextSelection(0, 0, null, m_flid, 0, ich, ich, 0, true, -1, null, true);
				}
				catch
				{
				}
			}