FarPoint.Win アセンブリ > FarPoint.Win 名前空間 > SuperEditBase クラス : SelectionLength プロパティ |
'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;}
このプロパティをゼロより小さい値に設定すると、実行時エラーが発生します。
コントロールの選択されているテキストを取得するには、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