Skip to main content

BaseLayoutItemHitInfo.IsSizing Property

Gets whether the current layout item is being or about to be resized by dragging the item’s border with the mouse.

Namespace: DevExpress.XtraLayout.HitInfo

Assembly: DevExpress.XtraLayout.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public bool IsSizing { get; }

Property Value

Type Description
Boolean

true if the current layout item is being or about to be resized; otherwise false.

Remarks

In customization mode, the Layout Control allows an end-user to rearrange and resize layout items by using mouse operations. When a layout item is being or about to be resized it’s cursor is changed to cursor_resize_horz or cursor_resize_vert. In this instance, the IsSizing property returns true. To determine whether the layout item is resized horizontally or vertically, see the BaseLayoutItemHitInfo.HitType property.

See Also