Skip to main content

BaseView.ReleaseDeferredLoadControl(BaseDocument, Boolean) Method

Fires the BaseView.ControlReleasing event with the specified parameter for the specified document.

Namespace: DevExpress.XtraBars.Docking2010.Views

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public void ReleaseDeferredLoadControl(
    BaseDocument document,
    bool keepControl
)

Parameters

Name Type Description
document BaseDocument

A BaseDocument object for which the event should be fired.

keepControl Boolean

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

Remarks

The ReleaseDeferredLoadControl 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 ReleaseDeferredLoadControl method allows you to fire the BaseView.ControlReleasing event for the specified document 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