Gets the name of the property that has changed.
Syntax
Visual Basic (Declaration) | |
---|
Public ReadOnly Property PropertyName As String |
C# | |
---|
public string PropertyName {get;} |
Property Value
String containing the name of the property
Example
C# | Copy Code |
---|
private void fpSpread1_Sheet1_PropertyChanged(object sender, FarPoint.Win.Spread.SheetViewPropertyChangeEventArgs e)
{
MessageBox.Show("The " + e.PropertyName + " property has changed");
}
|
Visual Basic | Copy Code |
---|
Private Sub FpSpread1_Sheet1_PropertyChanged(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.SheetViewPropertyChangeEventArgs)
Handles FpSpread1_Sheet1.PropertyChanged
MessageBox.Show("The " & e.PropertyName & " property has changed")
End Sub |
Requirements
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
See Also