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

NavigationEventArgs.Parameter Property

Gets or sets the parameter passed to the current navigation event.

Namespace: DevExpress.XtraBars.Docking2010.Views.WindowsUI

Assembly: DevExpress.XtraBars.v19.2.dll

Declaration

public object Parameter { get; set; }

Property Value

Type Description
Object

An Object that is the parameter passed to the current navigation event.

Remarks

You can pass required data from one container to another via the Parameter property. To do so, implement the ISupportNavigation class for your Document content and use its ISupportNavigation.OnNavigatedFrom and ISupportNavigation.OnNavigatedTo methods. See the Application Hierarchy and Module Navigation topic for an example.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Parameter property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also