'Declaration
Public Function RemoveRows( _ ByVal row As Integer, _ ByVal count As Integer, _ Optional ByVal notifyUI As Boolean _ ) As ActionResult(Of Object)
'Usage
Dim instance As Worksheet Dim row As Integer Dim count As Integer Dim notifyUI As Boolean Dim value As ActionResult(Of Object) value = instance.RemoveRows(row, count, notifyUI)
Parameters
- row
- An integer value indicates the index of first row to remove.
- count
- An integer value indicates the number of row(s) to remove.
- notifyUI
- if set to
true
, GrapeCity.Spreadsheet.UI.UIManager need to be notified.
Return Value
true
if the rows are removed successful, false
otherwise.