Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / RichText Class / Overwrite(Int32,Int32,String) Method
The start position of the replaced range.
The length of the replaced range.
The new text.


In This Topic
    Overwrite(Int32,Int32,String) Method
    In This Topic
    Overwrites the specified range of this rich text by a new text.
    Syntax
    'Declaration
     
    
    Public Sub Overwrite( _
       ByVal start As Integer, _
       ByVal length As Integer, _
       ByVal text As String _
    ) 
    'Usage
     
    
    Dim instance As RichText
    Dim start As Integer
    Dim length As Integer
    Dim text As String
     
    instance.Overwrite(start, length, text)
    public void Overwrite( 
       int start,
       int length,
       string text
    )

    Parameters

    start
    The start position of the replaced range.
    length
    The length of the replaced range.
    text
    The new text.
    See Also