ResizingBehavior
Represents a class responsible for the resizing behavior in RadPivotGrid.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.PivotGrid.dll
Syntax:
public class ResizingBehavior
Inheritance: objectResizingBehavior
Constructors
Initializes a new instance of the ResizingBehavior class.
Fields
public ResizingBehavior.ResizeLocationPredicate IsInResizeLocationPredicate
Properties
Gets or sets whether to allow horizontal resize.
public bool AllowHorizontalResize { get; set; }
The allow horizontal resize.
Gets or sets whether to allow vertical resize.
public bool AllowVerticalResize { get; set; }
The allow vertical resize.
Gets or sets the deferred resize.
public bool DeferredResize { get; set; }
The deferred resize.
Gets whether the resizing operation is ongoing.
public bool IsResizing { get; }
The boolean value whether the resizing operation is ongoing.
Gets or sets the orientation.
public Orientation Orientation { get; set; }
The orientation.
Gets the resized object.
public IResizable ResizedObject { get; }
The resized object.
Methods
Adjusts the cursor.
Begins the resize operation.
public virtual bool BeginResize(IResizable resizedObject, Point mousePosition, Orientation orientation)
The resized object.
mousePositionPointThe mouse position.
orientationOrientationThe orientation.
Returns:Begins the resize operation.
public bool BeginResize(IResizable resizedObject, Point mousePosition)
The resized object.
mousePositionPointThe mouse position.
Returns:Ends the resize operation.
public virtual void EndResize(Point mousePosition)
The mouse position.
Handles the mouse move.
public virtual void HandleMouseMove(Point mousePosition)
The mouse position.