public IVTRange GetUsedRange() { IVTRange range = new VTRange(Worksheet.UsedRange, this); return(range); }
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); }
public void FillVariableValue(Dictionary <string, object> Data, IVTWorksheet OtherRange = null) { IVTRange range = new VTRange(Worksheet.UsedRange, this); range.FillVariableValue(Data, OtherRange); }