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

BaseView.ReleaseDeferredLoadControls(Boolean) Method

Fires the BaseView.ControlReleasing event with the specified parameter for all documents with unreleased content in the current BaseView.

Namespace: DevExpress.XtraBars.Docking2010.Views

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

public void ReleaseDeferredLoadControls(
    bool keepControls
)

Parameters

Name Type Description
keepControls Boolean

true, to cancel releasing and keep the document content; otherwise, false.

Remarks

The ReleaseDeferredLoadControls method is in effect if the document content is loaded using the Deferred Load mechanism.

By default, when the BaseView.ControlReleasing event is fired on changing the selected document, the ControlReleasingEventArgs.KeepControl property is set to true.

The ReleaseDeferredLoadControls method allows you to fire the BaseView.ControlReleasing event for all documents in the current BaseView with the specified ControlReleasingEventArgs.KeepControl property. The keepControls parameter specifies the ControlReleasingEventArgs.KeepControl property value. You can override this property value in the event handler. The document for which the event is raised can be selected via the DocumentCancelEventArgs.Document property of the ControlReleasingEventArgs object passed to an event handler.

The BaseView.ControlReleasing event does not fire if the content of the specified document is already released.

See Also