当前位置: 首页>>代码示例>>C#>>正文


C# TextBox.GetFirstCharIndexOfCurrentLine方法代码示例

本文整理汇总了C#中System.Windows.Forms.TextBox.GetFirstCharIndexOfCurrentLine方法的典型用法代码示例。如果您正苦于以下问题:C# TextBox.GetFirstCharIndexOfCurrentLine方法的具体用法?C# TextBox.GetFirstCharIndexOfCurrentLine怎么用?C# TextBox.GetFirstCharIndexOfCurrentLine使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Windows.Forms.TextBox的用法示例。


在下文中一共展示了TextBox.GetFirstCharIndexOfCurrentLine方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: getCurrentLineNo

 /// <summary>
 /// Gets the current line number.
 /// </summary>
 /// <param name="tb">a TextBox.</param>
 /// <returns>the current line number.</returns>
 public static int getCurrentLineNo(TextBox tb)
 {
     if (tb.Lines.Length == 0)
     {
         return 0;
     }
     else
     {
         int startIndex = tb.GetFirstCharIndexOfCurrentLine();
         return tb.GetLineFromCharIndex(startIndex);
     } 
 }
开发者ID:dineshkummarc,项目名称:SWAT_4.1_Binaries_Source,代码行数:17,代码来源:ControlsUtils.cs

示例2: getCurrentLineAndLineNo

 /// <summary>
 /// Gets a key/value pair containing currentLineNumber/currentLine.
 /// </summary>
 /// <param name="tb">the TextBox.</param>
 /// <returns>a key/value pair containing currentLineNumber/currentLine.</returns>
 public static KeyValuePair<int, String> getCurrentLineAndLineNo(TextBox tb)
 {
     if (tb.Lines.Length == 0)
     {
         return new KeyValuePair<int, String>(0,tb.Text);
     }
     else
     {
         int startIndex = tb.GetFirstCharIndexOfCurrentLine();
         int currentLineNumber = tb.GetLineFromCharIndex(startIndex);
         return new KeyValuePair<int,String>(currentLineNumber, tb.Lines[currentLineNumber]);
     } 
 }
开发者ID:dineshkummarc,项目名称:SWAT_4.1_Binaries_Source,代码行数:18,代码来源:ControlsUtils.cs

示例3: getCurrentLine

 /// <summary>
 /// Gets the current line from a TextBox control.
 /// </summary>
 /// <param name="tb">the TextBox control.</param>
 /// <returns>the current line.</returns>
 public static String getCurrentLine(TextBox tb)
 {
     if (tb.Lines.Length == 0)
     {
         return tb.Text;
     }
     else
     {
         int startIndex = tb.GetFirstCharIndexOfCurrentLine();
         int currentLineNumber = tb.GetLineFromCharIndex(startIndex);
         return tb.Lines[currentLineNumber];
     } 
 }
开发者ID:dineshkummarc,项目名称:SWAT_4.1_Binaries_Source,代码行数:18,代码来源:ControlsUtils.cs

示例4: UpdateCursorLocation

        protected void UpdateCursorLocation(TextBox tb)
        {
            cursorLineNo = tb.GetLineFromCharIndex(tb.SelectionStart) + 1;
             cursorColumnNo = tb.SelectionStart - tb.GetFirstCharIndexOfCurrentLine() + 1;

             // Update cursor position on status bar:

             mainStatusStripCursorPosLabel.Text = "(" + cursorLineNo.ToString() + ", " +
             cursorColumnNo.ToString() + ")";
        }
开发者ID:bblock,项目名称:PipeWrench,代码行数:10,代码来源:MainForm.cs


注:本文中的System.Windows.Forms.TextBox.GetFirstCharIndexOfCurrentLine方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。