Пример #1
0
        static private void show_column(OLVColumn col, int width, bool show)
        {
            if (col.Width == 0)
            {
                col.Width = width;
            }
            if (col.is_visible() == show)
            {
                return;
            }

            col.col_width(width);
            col.is_visible(show);
        }
Пример #2
0
        static private void show_column(OLVColumn col, int width, bool show) {
            if (col.Width == 0)
                col.Width = width;
            if (col.is_visible() == show)
                return;

            col.col_width(width);
            col.is_visible(show);
        }