Version

ReplaceContents(DocumentSpan,String,String,Boolean,Boolean) Method

Replaces the contents in specified document span with the specified 'newText'.
Syntax
'Declaration
 
Public Overloads Sub ReplaceContents( _
   ByVal span As DocumentSpan, _
   ByVal newText As String, _
   ByRef error As String, _
   Optional ByVal breakParagraphBeforeContent As Boolean, _
   Optional ByVal breakParagraphAfterContent As Boolean _
) 
public void ReplaceContents( 
   DocumentSpan span,
   string newText,
   out string error,
   bool breakParagraphBeforeContent,
   bool breakParagraphAfterContent
)

Parameters

span
Contents in this span will be replaced.
newText
Replacement text. Specifying null or empty string deletes the content in the specified span without inserting anything in its place.
error
If there's an error, this will be set to an error message.
breakParagraphBeforeContent
Indicates whether the replaced content should begin on a new paragraph.
breakParagraphAfterContent
Indicates whether the text immediately after the replaced content should begin on a new paragraph.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also