FarPoint.Win アセンブリ > FarPoint.Win 名前空間 > SuperEditBase クラス : SelectedText プロパティ |
'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;}
コントロールで何も選択されていない場合、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