The event args are PreviewShowCompass event.
Definition
Namespace:Telerik.Windows.Controls.Docking
Assembly:Telerik.Windows.Controls.Docking.dll
Syntax:
public class PreviewShowCompassEventArgs : EventArgs
Inheritance: objectEventArgsPreviewShowCompassEventArgs
Inherited Members
Constructors
Initializes a new instance of the PreviewShowCompassEventArgs class.
public PreviewShowCompassEventArgs(RadPaneGroup targetGroup, object draggedElement, Compass compass)
The target group.
draggedElementobjectThe dragged element.
compassCompassThe compass that is going to be shown.
Properties
Gets or sets a value indicating whether the action is canceled.
public bool Canceled { get; set; }
True if the action must be canceled; otherwise, false.
Gets or sets a value indicating whether a RadPane can be dropped on the TabStrip of the RadPaneGroup or reordered.
public bool? CanDropOnTabStrip { get; set; }
TrueCan be dropped in RadPaneGroup or reordered.False Cannot be dropped in RadPaneGroup or reordered.Null Gets the value of the IsCenterIndicatorVisible.
Gets the compass that is going to be shown.
public Compass Compass { get; }
The compass that is going to be shown.
Gets the dragged element.
public object DraggedElement { get; }
The dragged element. It can be RadSplitContainer, RadPaneGroup or a RadPane.
Gets the target group.
public RadPaneGroup TargetGroup { get; }
The target group.