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 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also