BlockMovedEventArgs
Class
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
Constructors
C#
public BlockMovedEventArgs(FloatingBlock floatingBlock, Point movedOffset, Point positionInImage, MouseEventArgs e)
Properties
MouseEventArgs
MouseEventArgs
Represents the event arguments for the BlockMoved event, containing information about the mouse event.
C#
public MouseEventArgs MouseEventArgs { get; }
MousePositionInImage
Point
Gets the position of the mouse within the image during the block move event.
C#
public Point MousePositionInImage { get; }
A Point representing the mouse position in the image.
MovedOffset
Point
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; }