Replaces the substring beginning at the specified <code>start</code> offset
and extending to the character at offset <code>end - 1</code> by the specified string.
<p>
This event notification is also used to delete text if <code>string</code> is an empty string,
or to insert text at the leading edge of the specified offset if <code>start</code> and <code>end</code> are equal.
</p>
@param e an event object containing the following information:<ul>
<li>in start - the 0 based offset of the first character of the substring
to be replaced</li>
<li>in end - the 0 based offset after the last character of the substring
to be replaced</li>
<li>in string - the string that replaces the substring beginning at
<code>start</code> and extending to <code>end - 1</code></li>
<li>out result - set to {@link ACC#OK} if the operation was completed successfully</li>
</ul>
Replaces the substring beginning at the specified <code>start</code> offset and extending to the character at offset <code>end - 1</code> by the specified string. <p> This event notification is also used to delete text if <code>string</code> is an empty string, or to insert text at the leading edge of the specified offset if <code>start</code> and <code>end</code> are equal. </p>
@param e an event object containing the following information:<ul> <li>in start - the 0 based offset of the first character of the substring to be replaced</li> <li>in end - the 0 based offset after the last character of the substring to be replaced</li> <li>in string - the string that replaces the substring beginning at <code>start</code> and extending to <code>end - 1</code></li> <li>out result - set to {@link ACC#OK} if the operation was completed successfully</li> </ul>