FarPoint.Win アセンブリ > FarPoint.Win 名前空間 > SuperEditBase クラス : ControlType プロパティ |
'Declaration Public Overridable Property ControlType As ControlType
'使用法 Dim instance As SuperEditBase Dim value As ControlType instance.ControlType = value value = instance.ControlType
public virtual ControlType ControlType {get; set;}
このプロパティは、編集コントロールの内容を処理する方法を指定するときに使用します。
注意:読み取り専用コントロールでも、通常のコントロールと同じイベントが発生します。静的コントロールの場合、発生するイベントは、Click、DoubleClick、DragDrop、DragOver、MouseDown、MouseMove、およびMouseUpのみです。 |
このプロパティをControlType.Staticに設定すると、TabStopプロパティが自動的にFalseに設定されます。
ControlType.ButtonEditが効力を持つのは、ButtonStyleプロパティがButtonStyle.None以外の値に設定されている場合のみです。
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