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

Provides data for the ImageSelectionAdornerShowing event.

Definition

Namespace:Telerik.Windows.Documents.UI

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

C#
public class ImageSelectionAdornerShowingEventArgs : EventArgs

Inheritance: objectEventArgsImageSelectionAdornerShowingEventArgs

Inherited Members EventArgs.Empty

Constructors

C#
public ImageSelectionAdornerShowingEventArgs(bool canRotate, bool canDrag, bool canResize)
Parameters:canRotateboolcanDragboolcanResizebool

Properties

Gets a value indicating whether the image can be dragged.

C#
public bool CanDrag { get; set; }
Property Value:

true if the image can be dragged; otherwise, false.

Gets a value indicating whether the selection adorner can be resized.

C#
public bool CanResize { get; set; }
Property Value:

true if the selection adorner can be resized; otherwise, false.

Gets a value indicating whether the image can be rotated.

C#
public bool CanRotate { get; set; }