public XlwRange(XlwWorksheet OwnerWorksheet,
		                int FirstRow, int FirstCol, int RowsCount, int ColsCount)
        {
            this.OwnerWorksheet = OwnerWorksheet;
            this.FirstRow = FirstRow;
            this.FirstCol = FirstCol;
            this.RowsCount = RowsCount;
            this.ColsCount = ColsCount;
        }
 public ExcelValueCellComponent(XlwWorksheet XlwWorksheet)
 {
     this.XlwWorksheet = XlwWorksheet;
 }