![]() |
This document is archived and information here might be outdated. Recommended version. |
| ArcObjects Help for .NET developers > ESRI.ArcGIS.Snippets > Snippets > Add Network Analyst Commands to ToolbarControl Snippet (ArcObjects .NET 10.4 SDK) |
Add the Network Analyst commands to the ToolbarControl.
///<summary>Add the Network Analyst commands to the ToolbarControl.</summary>
///
///<param name="toolbarControl">An IToolbarControl interface. Use the .Object property when passing a control in .NET. Example: axToolbarControl1.Object</param>
///
///<remarks></remarks>
public void AddNetworkAnalystCommandsToToolbarControl(ESRI.ArcGIS.Controls.IToolbarControl toolbarControl)
{
// Call to add the network analyst commands to the ToolbarControl
// For example, if a ToolbarControl named axToolbarControl1 exists use the following code:
// AddNetworkAnalystCommandsToToolbarControl(axToolbarControl1.Object as ESRI.ArcGIS.Controls.IToolbarControl);
toolbarControl.AddToolbarDef("esriControls.ControlsNetworkAnalystToolbar", -1, false, 0, ESRI.ArcGIS.SystemUI.esriCommandStyles.esriCommandStyleIconOnly);
}
'''<summary>Add the Network Analyst commands to the ToolbarControl.</summary>
'''
'''<param name="toolbarControl">An IToolbarControl interface. Use the .Object property when passing a control in .NET. Example: axToolbarControl1.Object</param>
'''
'''<remarks></remarks>
Public Sub AddNetworkAnalystCommandsToToolbarControl(ByVal toolbarControl As ESRI.ArcGIS.Controls.IToolbarControl)
' Call to add the network analyst commands to the ToolbarControl
' For example, if a ToolbarControl named axToolbarControl1 exists use the following code:
' AddNetworkAnalystCommandsToToolbarControl (AxToolbarControl1.Object)
toolbarControl.AddToolbarDef("esriControls.ControlsNetworkAnalystToolbar", -1, False, 0, ESRI.ArcGIS.SystemUI.esriCommandStyles.esriCommandStyleIconOnly)
End Sub