PowerTools SPREAD for Windows Forms 8.0J
SelectionStart プロパティ (SuperEditBase)


選択されている文字の先頭位置、または文字が選択されていない場合の 挿入ポイントの位置を取得または設定します。
構文
'Declaration
 
Public Overridable Property SelectionStart As Integer
'使用法
 
Dim instance As SuperEditBase
Dim value As Integer
 
instance.SelectionStart = value
 
value = instance.SelectionStart
public virtual int SelectionStart {get; set;}

プロパティ値

編集コントロール内の選択部分の開始位置(文字数)を表すInteger
解説

このプロパティの値はコントロール内の文字数に基づきます。最初の位置はゼロです。

このプロパティが使用できるのは実行時のみです。

control.EditModeCursorPosition = FarPoint.Win.EditModeCursorPosition.LastKnownPosition;
control.Text = "This is a test for HideSelection";
control.ControlType = FarPoint.Win.ControlType.Normal;
control.SelectionStart = 2;
control.SelectionLength = 5;
control.Selectable = true;
control.HideSelection = false;
control.AutoMenu = true;
textBox1.Text = control.SelectedText();
control.MaxLength = 9;
control.EditModeCursorPosition = FarPoint.Win.EditModeCursorPosition.LastKnownPosition
control.Text = "This is a test for HideSelection"
control.ControlType = FarPoint.Win.ControlType.Normal
control.SelectionStart = 2
control.SelectionLength = 5
control.Selectable = True
control.HideSelection = False
control.AutoMenu = True
TextBox1.Text = control.SelectedText()
control.MaxLength = 9
参照

SuperEditBase クラス
SuperEditBase メンバ
SelectedText プロパティ
SelectionLength プロパティ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.