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


編集コントロールで選択されている文字数を取得または設定します。
構文
'Declaration
 
Public Overridable Property SelectionLength As Integer
'使用法
 
Dim instance As SuperEditBase
Dim value As Integer
 
instance.SelectionLength = value
 
value = instance.SelectionLength
public virtual int SelectionLength {get; set;}

プロパティ値

選択部分の長さ(文字数)を表すInteger
解説

このプロパティをゼロより小さい値に設定すると、実行時エラーが発生します。

コントロールの選択されているテキストを取得するには、SelectedTextプロパティを使用します。

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

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 プロパティ

 

 


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