Replaces a section of text in the file with the sepecified text.
[Visual Basic] Sub ReplaceText( _ ByVal start As Integer, _ ByVal count As Integer, _ ByVal text As String _ ) [C#] void ReplaceText( int start, int count, string text ); [C++] void ReplaceText( int start, int count, String* text ) = 0; [JScript] function ReplaceText( start : int, count : int, text : String );
Note This method is primarily used by other CodeSense objects. The primary way for users to manipulate the text contained in a source file should be through manipulating the object model, rather than directly editing the file.
ICodeSourceFile Interface | ICodeSourceFile Members | System.ComponentModel.Design.CodeModel Namespace