![]() |
This document is archived and information here might be outdated. Recommended version. |
| ArcObjects Help for .NET developers > ArcObjects namespaces > Controls > ESRI ArcGIS Controls > Classes > C > ControlsMapSwipeTool CoClass (ArcObjects .NET 10.5 SDK) |
Interactively reveals layers on a map.
The CLSID of this command is: {867C6BDC-DB38-485C-B56C-BD912D0CAD74}.
This command works with the ToolbarControl, MapControl and ArcMap (it does not work with focus map in the PageLayoutControl).
This command must be used in conjunction with CommandsEnvironment singleton object. Failure to instantiate the CommandsEnvironment singleton object results in this command internally using it's own instance of the CommandsEnvironment object and appearing disabled to the end user.
This command gets the layer to be swiped from the ILayerEffectProperties::SwipeLayer property on the CommandsEnvironment singleton. This can be set programmatically or interactively by the end user selecting a layer from the ControlsLayerListToolControl.
| Interfaces | Description |
|---|---|
| ICommand (esriSystemUI) | Provides access to members that define a COM command. |
| ITool (esriSystemUI) | Provides access to members that define a tool. |
usingESRI.ArcGIS.Controls;usingESRI.ArcGIS.SystemUI;publicpartialclassForm1 : Form {privateCommandsEnvironmentClass m_CommandsEnvironment=newCommandsEnvironmentClass();private voidForm1_Load(objectsender, System.EventArgs e) {//Set buddy controlaxToolbarControl1.SetBuddyControl(axMapControl1);//Add items to ToolbarControlaxToolbarControl1.AddItem("esriControls.ControlsOpenDocCommand", -1, -1,false, 0, esriCommandStyles.esriCommandStyleIconOnly); axToolbarControl1.AddItem("esriControls.ControlsMapSwipeTool", -1, -1,true, 0, esriCommandStyles.esriCommandStyleIconOnly); axToolbarControl1.AddItem("esriControls.ControlsLayerListToolControl", -1, -1,false, 0, esriCommandStyles.esriCommandStyleIconOnly); } }
ImportsESRI.ArcGIS.ControlsImportsESRI.ArcGIS.SystemUIPublic ClassForm1Privatem_CommandsEnvironmentAs NewCommandsEnvironmentClassPrivate SubForm1_Load(ByValsenderAsSystem.Object,ByValeAsSystem.EventArgs)HandlesMyBase.Load'Set buddy controlAxToolbarControl1.SetBuddyControl(AxMapControl1)'Add items to ToolbarControlAxToolbarControl1.AddItem("esriControls.ControlsOpenDocCommand", -1, -1,False, 0, esriCommandStyles.esriCommandStyleIconOnly) AxToolbarControl1.AddItem("esriControls.ControlsMapSwipeTool", -1, -1,True, 0, esriCommandStyles.esriCommandStyleIconOnly) AxToolbarControl1.AddItem("esriControls.ControlsLayerListToolControl", -1, -1,False, 0, esriCommandStyles.esriCommandStyleIconOnly)End Sub EndClass