예제 #1
0
        /// <summary>
        /// Required method for ArcGIS Component Category unregistration -
        /// Do not modify the contents of this method with the code editor.
        /// </summary>
        private static void ArcGISCategoryUnregistration(Type registerType)
        {
            string regKey = string.Format("HKEY_CLASSES_ROOT\\CLSID\\{{{0}}}", registerType.GUID);

            ControlsCommands.Unregister(regKey);
        }
예제 #2
0
 static void UnregisterFunction(String sKey)
 {
     ControlsCommands.Unregister(sKey);
 }
예제 #3
0
 private static void ArcGISCategoryUnregistration(Type registerType)
 {
     ControlsCommands.Unregister(string.Format(@"HKEY_CLASSES_ROOT\CLSID\{{{0}}}", registerType.GUID));
 }
 static void Unreg(string regKey)
 {
     ControlsCommands.Unregister(regKey);
 }