TextWriter.write

Inserts the given string to the data at the specified offset. <p> Do nothing if "offset" is < 0 or > getCharCount() </p>

@param string text to insert @param offset offset in the existing data to insert "string" at.

  1. void write(String string)
  2. void write(String string, int offset)
    class TextWriter
    void
    write
    (
    String string
    ,
    int offset
    )
  3. void write(int i)
  4. void write(char i)

Meta