UpdateSelCountDockWin() private method

private UpdateSelCountDockWin ( ) : void
return void
        // Statics

        internal static IDockableWindow GetSelectionCountWindow()
        {
            if (s_extension == null)
            {
                GetExtension();
            }

            // Only get/create the dockable window if they ask for it
            if (s_dockWindow == null)
            {
                // Use GetDockableWindow directly intead of FromID as we want the client IDockableWindow not the internal class
                UID dockWinID = new UIDClass();
                dockWinID.Value = ThisAddIn.IDs.SelCountDockWin;
                s_dockWindow    = ArcMap.DockableWindowManager.GetDockableWindow(dockWinID);
                s_extension.UpdateSelCountDockWin();
            }

            return(s_dockWindow);
        }