Com.Aote.Reports.Cell.copyCell C# (CSharp) Method

copyCell() public method

复制单元格
public copyCell ( ) : Cell
return Cell
        public Cell copyCell()
        {
            Cell cell = new Cell() { Row = Row, Column = Column, Content = Content, RowSpan = RowSpan, ColumnSpan = ColumnSpan,Location=Location, Width = Width, Height = Height, Delegate = Delegate };
            return cell;
        }