Class RowColumnPropertyChangedEventArgs
Represents row or column property changed event arguments.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.PropertySystem
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class RowColumnPropertyChangedEventArgs : EventArgs
  Constructors
RowColumnPropertyChangedEventArgs(IPropertyDefinition, Int32, Int32)
Initializes a new instance of the RowColumnPropertyChangedEventArgs class.
Declaration
public RowColumnPropertyChangedEventArgs(IPropertyDefinition property, int fromIndex, int toIndex)
  Parameters
| 
        IPropertyDefinition
        property
         The property.  | 
    
| 
        System.Int32
        fromIndex
         The first index of the changed range.  | 
    
| 
        System.Int32
        toIndex
         The last index of the changed range.  | 
    
Properties
FromIndex
Gets the first index of the changed range.
Declaration
public int FromIndex { get; }
  Property Value
| 
        System.Int32
         The first index of the changed range.  | 
    
Property
Gets the changed property.
Declaration
public IPropertyDefinition Property { get; }
  Property Value
| 
        IPropertyDefinition
         The changed property.  | 
    
ToIndex
Gets the last index of the changed range.
Declaration
public int ToIndex { get; }
  Property Value
| 
        System.Int32
         The last index of the changed range.  |