//Visible 속성이 붙은 경우는 이걸 호출해서 세팅해줘야 한다.
        //이전
        //public void SetVisibleIconImage(GUIContent guiVisible_Current, GUIContent guiNonVisible_Current,
        //									GUIContent guiVisible_TmpWork, GUIContent guiNonVisible_TmpWork,
        //									GUIContent guiVisible_Default, GUIContent guiNonVisible_Default,
        //									GUIContent guiVisible_ModKey, GUIContent guiNonVisible_ModKey,
        //									GUIContent gui_NoKey
        //									)
        //변경 19.11.16 : Wrapper 클래스 이용
        public void SetVisibleIconImage(apGUIContentWrapper guiVisible_Current, apGUIContentWrapper guiNonVisible_Current,
                                        apGUIContentWrapper guiVisible_TmpWork, apGUIContentWrapper guiNonVisible_TmpWork,
                                        apGUIContentWrapper guiVisible_Default, apGUIContentWrapper guiNonVisible_Default,
                                        apGUIContentWrapper guiVisible_ModKey, apGUIContentWrapper guiNonVisible_ModKey,
                                        apGUIContentWrapper gui_NoKey,
                                        FUNC_REFRESH_VISIBLE_PREFIX funcVisiblePrePostFix
                                        )
        {
            if (_guiContent_Visible == null)
            {
                _guiContent_Visible = new apGUIContentWrapper[4];
            }
            if (_guiContent_Nonvisible == null)
            {
                _guiContent_Nonvisible = new apGUIContentWrapper[4];
            }

            _guiContent_Visible[(int)VISIBLE_ICON.Current] = guiVisible_Current;
            _guiContent_Visible[(int)VISIBLE_ICON.TmpWork] = guiVisible_TmpWork;
            _guiContent_Visible[(int)VISIBLE_ICON.Default] = guiVisible_Default;
            _guiContent_Visible[(int)VISIBLE_ICON.ModKey]  = guiVisible_ModKey;

            _guiContent_Nonvisible[(int)VISIBLE_ICON.Current] = guiNonVisible_Current;
            _guiContent_Nonvisible[(int)VISIBLE_ICON.TmpWork] = guiNonVisible_TmpWork;
            _guiContent_Nonvisible[(int)VISIBLE_ICON.Default] = guiNonVisible_Default;
            _guiContent_Nonvisible[(int)VISIBLE_ICON.ModKey]  = guiNonVisible_ModKey;

            _guiContent_NoKey = gui_NoKey;

            _funcRefreshVisiblePreFix = funcVisiblePrePostFix;            //추가 19.11.24
        }
        private void InitPrevRender()
        {
            _isPrevRender_ModRegBox      = false;
            _isPrevRender_VisiblePrefix  = false;
            _isPrevRender_VisiblePostfix = false;
            _isPrevRender_Fold           = false;

            _isPrevRender_RestoreTmpWorkVisible = false;

            _funcRefreshVisiblePreFix = null;
        }