New to Telerik UI for WPFStart a free 30-day trial

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:

C#
public class SectionColumnDataChangedEventArgs : EventArgs

Inheritance: objectEventArgsSectionColumnDataChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the SectionColumnDataChangedEventArgs class.

C#
public SectionColumnDataChangedEventArgs(int id, double oldValue, double newValue)
Parameters:idint

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

oldValuedouble

The old value of the SectionColumnDataViewModel width or spacing after.

newValuedouble

The new value of the SectionColumnDataViewModel width or spacing after.

Properties

Gets or sets the Id of the SectionColumnDataViewModel which width or spacing after is changed

C#
public int Id { get; set; }

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

C#
public double NewValue { get; set; }

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

C#
public double OldValue { get; set; }