Class
SectionColumnDataChangedEventArgs

EventArgs used when Telerik.Windows.Controls.RichTextBoxUI.Dialogs.SectionColumns.SectionColumnData changes its width or spacing after.

Definition

Namespace:Telerik.Windows.Controls.RichTextBoxUI.Dialogs.SectionColumns

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

cs-api-definition
public class SectionColumnDataChangedEventArgs : EventArgs

Inheritance: objectEventArgsSectionColumnDataChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

SectionColumnDataChangedEventArgs(int, double, double)

Initializes a new instance of the SectionColumnDataChangedEventArgs class.

Declaration

cs-api-definition
public SectionColumnDataChangedEventArgs(int id, double oldValue, double newValue)

Parameters

id

int

The Id of the SectionColumnDataViewModel which width or spacing after is changed.

oldValue

double

The old value of the SectionColumnDataViewModel width or spacing after.

newValue

double

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

cs-api-definition
public int Id { get; set; }

Property Value

int

NewValue

Gets or sets the new value of the SectionColumnDataViewModel width or spacing after.

Declaration

cs-api-definition
public double NewValue { get; set; }

Property Value

double

OldValue

Gets or sets the old value of the SectionColumnDataViewModel width or spacing after.

Declaration

cs-api-definition
public double OldValue { get; set; }

Property Value

double