Class SectionColumnDataChangedEventArgs
EventArgs used when Telerik.Windows.Controls.RichTextBoxUI.Dialogs.SectionColumns.SectionColumnData changes its width or spacing after.
Inheritance
Inherited Members
Namespace: Telerik.WinForms.RichTextEditor.RichTextBoxUI.Dialogs
Assembly: Telerik.WinControls.RichTextEditor.dll
Syntax
public class SectionColumnDataChangedEventArgs : EventArgs
  Constructors
SectionColumnDataChangedEventArgs(Int32, Double, Double)
Initializes a new instance of the SectionColumnDataChangedEventArgs class.
Declaration
public SectionColumnDataChangedEventArgs(int id, double oldValue, double newValue)
  Parameters
| 
        System.Int32
        id
         The Id of the SectionColumnDataViewModel which width or spacing after is changed.  | 
    
| 
        System.Double
        oldValue
         The old value of the SectionColumnDataViewModel width or spacing after.  | 
    
| 
        System.Double
        newValue
         The new value of the SectionColumnDataViewModel width or spacing after.  | 
    
Properties
Id
Gets or sets the Id of the SectionColumnDataViewModel which width or spacing after is changed
Declaration
public int Id { get; set; }
  Property Value
| 
        System.Int32
         
  | 
    
NewValue
Gets or sets the new value of the SectionColumnDataViewModel width or spacing after.
Declaration
public double NewValue { get; set; }
  Property Value
| 
        System.Double
         
  | 
    
OldValue
Gets or sets the old value of the SectionColumnDataViewModel width or spacing after.
Declaration
public double OldValue { get; set; }
  Property Value
| 
        System.Double
         
  |