'Declaration Public Overridable Function RemoveText( _ ByVal startingTag As String, _ ByVal endingTag As String _ ) As Boolean
'Usage Dim instance As Container Dim startingTag As String Dim endingTag As String Dim value As Boolean value = instance.RemoveText(startingTag, endingTag)
public virtual bool RemoveText( string startingTag, string endingTag )
Parameters
- startingTag
- A string that represents the removal process' starting point; in other words, the first word that will be removed.
- endingTag
- A string that represents the removal process' ending point; in other words, the last word that will be removed.
Return Value
Returns true if the removal process succeeds; returns false otherwise.