Skip to main content
A newer version of this page is available. .

LayoutItemSizeChangedEventArgs(BaseLayoutItem, Boolean, GridLength, GridLength) Constructor

Initializes a new instance of the LayoutItemSizeChangedEventArgs class with the specified settings.

Namespace: DevExpress.Xpf.Docking.Base

Assembly: DevExpress.Xpf.Docking.v19.1.dll

Declaration

public LayoutItemSizeChangedEventArgs(
    BaseLayoutItem item,
    bool isWidth,
    GridLength value,
    GridLength prevValue
)

Parameters

Name Type Description
item BaseLayoutItem

A BaseLayoutItem object that represents the current item.

isWidth Boolean

A Boolean value that specifies whether the item’s width has been changed.

value GridLength

A new value of the item’s width/height.

prevValue GridLength

The previous value of the item’s width/height.

See Also