ToolStripTextBox.GetFirstCharIndexFromLine(Int32) 方法

定义

检索给定行第一个字符的索引。

public:
 int GetFirstCharIndexFromLine(int lineNumber);
public int GetFirstCharIndexFromLine (int lineNumber);
member this.GetFirstCharIndexFromLine : int -> int
Public Function GetFirstCharIndexFromLine (lineNumber As Integer) As Integer

参数

lineNumber
Int32

要获取其第一个字符的索引的行。

返回

Int32

位于指定行的从零开始的字符索引。

注解

lineNum如果参数为负数,GetFirstCharIndexFromLine则返回 0。 lineNum如果参数超过控件中的行数,GetFirstCharIndexFromLine则返回控件中最后一行的第一个字符索引。

GetFirstCharIndexFromLine 返回物理行的第一个字符索引。 物理行是显示的行,而不是分配的行。 显示的行数可以大于由于换行而分配的行数。 例如,如果将两条长线分配给控件并设置MultilineWordWrap设置true,则两个长分配行会导致四个RichTextBox物理 (或显示行) 。

适用于

另请参阅