Infragistics2.Win.Misc.v8.2
UltraNavigationBarLocation Class
See Also  Members  
Infragistics.Win.Misc Namespace : UltraNavigationBarLocation Class

Encapsulates a location in the navigation path for the UltraNavigationBar control.

Object Model





Syntax

Visual Basic (Declaration) 
Public Class UltraNavigationBarLocation 
   Inherits KeyedSubObjectBase
   Implements IKeyedSubObjectIKeyedSubObjectEx, ISubObjectOwner 
C# 
public class UltraNavigationBarLocation : KeyedSubObjectBase, IKeyedSubObjectIKeyedSubObjectEx, ISubObjectOwner  

Remarks

The UltraNavigationBar control realizes its navigation path through the UltraNavigationBarLocation object. The UltraNavigationBar.RootLocation, which is the highest-level ancestor location, derives from this type. Each UltraNavigationBarLocation instance, including the root location, exposes a UltraNavigationBarLocation.Locations collection, which contains the immediate children of that location. Each member of that collection in turn exposes its own Locations collection, creating a recursive ancestral relationship which defines all possible nodes for the control's navigation path. Each member of the path is a child of some other member of the path, with the exception of the root location. Each of these locations is identified by its UltraNavigationBarLocation.Parent location's UltraNavigationBarLocation.SelectedLocation property. The terminal location of the navigation path is returned by the control's UltraNavigationBar.SelectedLocation property.

See Also