Version

DisplayNavigationPaneOptionsDialog Method

Displays the Navigation Pane Options Dialog.
Syntax
'Declaration
 
Public Sub DisplayNavigationPaneOptionsDialog() 
public void DisplayNavigationPaneOptionsDialog()
Remarks

Only valid when the control style is ‘3 – Outlook Navigation Pane’.

When this method is called for other control styles, no dialog is displayed.

Example
The following code shows how to display the NavigationPaneOptionsDialog.

Imports System.Diagnostics
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinExplorerBar


	Private Sub button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button2.Click

		' Display the NavigationPaneOptionsDialog.
		Me.UltraExplorerBar1.DisplayNavigationPaneOptionsDialog()

	End Sub
using System.Diagnostics;
using Infragistics.Win;
using Infragistics.Win.UltraWinExplorerBar;


		private void button2_Click(object sender, System.EventArgs e)
		{
			// Display the NavigationPaneOptionsDialog.
			this.ultraExplorerBar1.DisplayNavigationPaneOptionsDialog();
		}
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