bool DrawTypeCell(ExcelCell cell)
    {
        var list  = SupportTypeUtil.GetSupportTypeList();
        var type  = SupportTypeUtil.GetIType(cell.stringValue);
        int index = 0;

        if (type != null)
        {
            index = list.IndexOf(type.realName);
        }
        int selectIndex = EditorGUILayout.Popup(index, list.ToArray());

        if (selectIndex != index || type == null)
        {
            cell.stringValue = list[selectIndex];
            return(true);
        }
        return(false);
    }