Version

InitializeNavigatorItem Event

Fires once for each list item that appears in the Navigator user interface.
Syntax
'Declaration
 
Public Event InitializeNavigatorItem As InitializeNavigatorItemHandler
public event InitializeNavigatorItemHandler InitializeNavigatorItem
Event Data

The event handler receives an argument of type InitializeNavigatorItemEventArgs containing data related to this event. The following InitializeNavigatorItemEventArgs properties provide information specific to this event.

PropertyDescription
DisplayText Gets/sets the caption of the item.
IsMdiChild Returns true if the item represents an MDI child window.
ItemAppearance Returns an Appearance object with which the item's visual settings can be customized.
MdiChild Returns the MDI child window represented by the item being initialized, or null. This property returns null when the IsMdiChild property returns false.
Pane Returns the pane represented by the item being initialized, or null. This property returns null when the IsMdiChild property returns true.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also