'Declaration
Public Function ReplaceContent( _ ByVal searchValue As Object, _ ByVal newValue As Object _ ) As Integer
'Usage
Dim instance As Workbook Dim searchValue As Object Dim newValue As Object Dim value As Integer value = instance.ReplaceContent(searchValue, newValue)
public int ReplaceContent( object searchValue, object newValue )
Parameters
- searchValue
- The value that will be searched for.
- newValue
- The value that will replace all found instances of the searchValue.
Return Value
The total number of instances of the searchValue that were replaced within the content of the Workbook.