Skip to main content
All docs
V25.1
  • TileControl.BeforeLoadLayout Event

    Occurs before a layout is restored from storage (a stream, xml file or the system registry).

    Namespace: DevExpress.XtraEditors

    Assembly: DevExpress.XtraEditors.v25.1.dll

    NuGet Package: DevExpress.Win.Navigation

    Declaration

    [DXCategory("Behavior")]
    public event LayoutAllowEventHandler BeforeLoadLayout

    Event Data

    The BeforeLoadLayout event's data class is LayoutAllowEventArgs. The following properties provide information specific to this event:

    Property Description
    Allow Gets or sets whether to allow upgrading the control layout.
    NewHiddenItems Returns an array of items that exist in the current control but do not exist in the layout being loaded. These items are hidden. This property is in effect for the LayoutControl. Inherited from LayoutUpgradeEventArgs.
    PreviousVersion Returns the textual representation of the previous layout version. Inherited from LayoutUpgradeEventArgs.
    See Also