Spread Windows Forms 9.0 Product Documentation
RowErrorTextChanged Event (FpSpread)
Example 


Occurs when the row error text has changed.
Syntax
'Declaration
 
Public Event RowErrorTextChanged As RowErrorTextEventHandler
'Usage
 
Dim instance As FpSpread
Dim handler As RowErrorTextEventHandler
 
AddHandler instance.RowErrorTextChanged, handler
public event RowErrorTextEventHandler RowErrorTextChanged
Event Data

The event handler receives an argument of type RowErrorTextChangedEventArgs containing data related to this event. The following RowErrorTextChangedEventArgs properties provide information specific to this event.

PropertyDescription
RowIndexGets the row index.  
SheetViewGets SheetView object.  
Example
This example uses the RowErrorTextChanged event.
fpSpread1.ShowRowErrors = true;
fpSpread1.Sheets[0].Rows[1].ErrorText = "RowError";
fpSpread1.Sheets[0].Rows[1].Locked = true;

private void fpSpread1_RowErrorTextChanged(object sender, FarPoint.Win.Spread.RowErrorTextChangedEventArgs e)
        {
            listBox1.Items.Add(e.RowIndex);
        }
FpSpread1.ShowRowErrors = True
FpSpread1.Sheets(0).Rows(1).ErrorText = "RowError"
FpSpread1.Sheets(0).Rows(1).Locked = True

    Private Sub FpSpread1_RowErrorTextChanged(sender As Object, e As FarPoint.Win.Spread.RowErrorTextChangedEventArgs) Handles FpSpread1.RowErrorTextChanged
        ListBox1.Items.Add(e.RowIndex)
    End Sub
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

FpSpread Class
FpSpread Members

 

 


Copyright © GrapeCity, inc. All rights reserved.