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

Represents a base class for the heading thumb controls.

Definition

Namespace:Telerik.Windows.Controls.Spreadsheet.Worksheets.Margins

Assembly:Telerik.Windows.Controls.Spreadsheet.dll

Syntax:

C#
public abstract class HeadingThumb : ControlBase

Inheritance: objectControlBaseHeadingThumb

Derived Classes: ResizeThumbUnhideThumb

Inherited Members ControlBase.GetTemplateChild<T>(string)ControlBase.GetRequiredTemplateChild<T>(string, bool)

Constructors

C#
protected HeadingThumb()

Properties

Gets the current drag point.

C#
public Point CurrentDragPoint { get; }
Property Value:

The current drag point.

Gets or sets the drag completed point.

C#
public Point DragCompletedPoint { get; }
Property Value:

The drag completed point.

Gets or sets the drag delta value.

C#
public Point DragDeltaValue { get; }
Property Value:

The drag delta value.

Gets or sets the drag started point.

C#
public Point DragStartedPoint { get; }
Property Value:

The drag started point.

Gets or sets the value indicating whether the drag is canceled.

C#
public bool IsDragCanceled { get; }
Property Value:

The value indicating whether the drag is canceled.

Gets or sets the value indicating whether there is dragging in progress.

C#
public bool IsDragging { get; }
Property Value:

The value indicating whether there is dragging in progress.

Gets or sets the total drag delta value.

C#
public Point TotalDragDeltaValue { get; }
Property Value:

The total drag delta value.

Methods

When overridden in a derived class, is invoked whenever application code or internal processes call .

C#
public override void OnApplyTemplate()

Called when the drag is completed.

C#
protected virtual void OnDragCompleted()

Called when when dragging.

C#
protected virtual void OnDragDelta()

Called when drag has started.

C#
protected virtual void OnDragStarted()

Events

Occurs when the drag is completed.

C#
public event EventHandler DragCompleted

Occurs when dragging.

C#
public event EventHandler DragDelta

Occurs when drag has started.

C#
public event EventHandler DragStarted