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


編集コントロールで現在選択されているテキストを取得または設定します。
構文
'Declaration
 
Public Overridable Property SelectedText As String
'使用法
 
Dim instance As SuperEditBase
Dim value As String
 
instance.SelectedText = value
 
value = instance.SelectedText
public virtual string SelectedText {get; set;}

プロパティ値

選択されているテキストを含むString
解説

コントロールで何も選択されていない場合、SelectedTextプロパティは空の文字列を返します。ただし、AllowNullプロパティをTrueに設定すると、SelectedTextプロパティはNull値を返します。

選択したテキストを置き換えるには、文字列をSelectedTextプロパティに指定します。

選択部分の文字数を取得するには、SelectionLengthプロパティを取得します。

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

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 メンバ
AllowNull プロパティ
SelectionLength プロパティ

 

 


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