|  | TopicEditorWindowReplaceTextAt Method | 
            Replace text at the given location with the new text
            
 
Namespace: SandcastleBuilder.Gui.ContentEditorsAssembly: SandcastleBuilderGUI (in SandcastleBuilderGUI.exe) Version: 2014.11.22.0
 Syntax
Syntaxpublic int ReplaceTextAt(
	Point p,
	int length,
	string text
)
Public Function ReplaceTextAt ( 
	p As Point,
	length As Integer,
	text As String
) As Integer
public:
int ReplaceTextAt(
	Point p, 
	int length, 
	String^ text
)
member ReplaceTextAt : 
        p : Point * 
        length : int * 
        text : string -> int 
Parameters
- p
- Type: System.DrawingPoint
 The location at which to replace text
- length
- Type: SystemInt32
 The length of the text to replace
- text
- Type: SystemString
 The replacement text
Return Value
Type: 
Int32The length of the text that was replaced (includes trailing spaces if the word was removed
 See Also
See Also