CustomGxObject_CS.GxPyObject.ArcGISCategoryUnregistration C# (CSharp) 메소드

ArcGISCategoryUnregistration() 개인적인 정적인 메소드

Required method for ArcGIS Component Category unregistration - Do not modify the contents of this method with the code editor.
private static ArcGISCategoryUnregistration ( Type registerType ) : void
registerType System.Type
리턴 void
        private static void ArcGISCategoryUnregistration(Type registerType)
        {
            string regKey = string.Format("HKEY_CLASSES_ROOT\\CLSID\\{{{0}}}", registerType.GUID);
            GxRootObjects.Unregister(regKey);

        }