Exemplo n.º 1
0
        public static void SetRange(IEditableLineSizeHost lines, int from, int to, double[] values)
        {
            int index = from;
            int n     = 0;

            while (index <= to)
            {
                lines.SetRange(index, index, values[n++]);
                index++;
            }
        }