ToolStripComboBox.SelectionStart 属性

定义

获取或设置 ToolStripComboBox 中选定文本的起始索引。

public:
 property int SelectionStart { int get(); void set(int value); };
[System.ComponentModel.Browsable(false)]
public int SelectionStart { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.SelectionStart : int with get, set
Public Property SelectionStart As Integer

属性值

Int32

当前选中文本的字符串中第一个字符的从零开始的索引。

属性

注解

如果未在控件中选择任何文本,则此属性指示新文本的插入点。 如果将此属性设置为超出控件中文本长度的位置,则选择开始位置将放置在最后一个字符之后。 在文本框控件中选择文本时,更改此属性可以释放该属性的值 SelectionLength 。 如果在属性指示 SelectionStart 的位置小于 SelectionLength 属性值之后控件中的剩余文本,则属性的值 SelectionLength 将自动减少。 属性的值 SelectionStart 永远不会导致属性增加 SelectionLength

适用于