AppendText() public method

Appends a copy of the specified string to the _end of this instance.
public AppendText ( string text ) : ScintillaNET.Range
text string The to append.
return ScintillaNET.Range
Exemplo n.º 1
0
 private void InitText()
 {
     // InitText
     m_rScintilla_TextArea.Text            = "http://www.google.com";
     m_rScintilla_TextArea.CurrentPosition = 21;
     m_rScintilla_TextArea.AppendText("\nhttp://www.izurnal.cz");
     string sDebug_FistLine = m_rScintilla_TextArea.Lines[1].Text;
     //m_rScintilla_TextArea.AddText("\r\nhttp://www.izurnal.cz");
 }