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

Provides data for the BlockMoved event.

Definition

Namespace:Telerik.Windows.Documents.UI.Adorner

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

C#
public class BlockMovedEventArgs : EventArgs

Inheritance: objectEventArgsBlockMovedEventArgs

Inherited Members EventArgs.Empty

Constructors

C#
public BlockMovedEventArgs(FloatingBlock floatingBlock, Point movedOffset, Point positionInImage, MouseEventArgs e)
Parameters:floatingBlockFloatingBlockmovedOffsetPointpositionInImagePointeMouseEventArgs

Properties

MouseEventArgs

MouseEventArgs

Represents the event arguments for the BlockMoved event, containing information about the mouse event.

C#
public MouseEventArgs MouseEventArgs { get; }

Gets the position of the mouse within the image during the block move event.

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

A Point representing the mouse position in the image.

Represents the offset by which a block has been moved in the document.

C#
public Point MovedOffset { get; }

Gets the target floating block associated with the block moved event.

C#
public FloatingBlock TargetFloatingBlock { get; }