Exemplo n.º 1
0
        public IVTRange GetUsedRange()
        {
            IVTRange range = new VTRange(Worksheet.UsedRange, this);

            return(range);
        }
Exemplo n.º 2
0
        public void SetBorder(VTBorderStyle boderStyle, VTBorderIndex borderIndex, int firstRow, int firstCoumn, int lastRow, int lastColumn)
        {
            IVTRange range = new VTRange(Worksheet.Range[firstRow, firstCoumn, lastRow, lastColumn], this);

            range.SetBorder(boderStyle, borderIndex);
        }
Exemplo n.º 3
0
        public void FillVariableValue(Dictionary <string, object> Data, IVTWorksheet OtherRange = null)
        {
            IVTRange range = new VTRange(Worksheet.UsedRange, this);

            range.FillVariableValue(Data, OtherRange);
        }