Spread Silverlight Documentation
NextNonEmptyRow(Int32) Method
Example 


The row whose next nonempty row is to be returned.
Returns the next nonempty row index for the specified column.
Syntax
'Declaration
 
Public Overloads Function NextNonEmptyRow( _
   ByVal row As System.Integer _
) As System.Integer
'Usage
 
Dim instance As Worksheet
Dim row As System.Integer
Dim value As System.Integer
 
value = instance.NextNonEmptyRow(row)
public System.int NextNonEmptyRow( 
   System.int row
)

Parameters

row
The row whose next nonempty row is to be returned.

Return Value

The next nonempty row index.
Example
This example uses the NextNonEmptyRow method.
gcSpreadSheet1.Sheets[0].Cells[2, 2].Text = "test";

private void button1_Click(object sender, RoutedEventArgs e)
        {
            int j = 0;           

            while (!(j == -1))
            {
                j = gcSpreadSheet1.Sheets[0].NextNonEmptyRow(j);
                listBox1.Items.Add(j.ToString());
            }
        }
GcSpreadSheet1.Sheets(0).Cells(2, 2).Text = "test"

Private Sub Button1_Click(sender As System.Object, e As System.Windows.RoutedEventArgs) Handles Button1.Click
        Dim j As Integer
        j = 0

        Do Until j = -1
            j = GcSpreadSheet1.Sheets(0).NextNonEmptyRow(j)
            ListBox1.Items.Add(j.ToString())
        Loop
End Sub
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

Worksheet Class
Worksheet Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.