Cell.Copy

Cell.Copy method

Copies data from a source cell.

public void Copy(Cell cell)
ParameterTypeDescription
cellCellSource Cell object.

Examples

using System;
using Aspose.Cells;

namespace AsposeCellsExamples
{
    public class CellMethodCopyWithCellDemo
    {
        public static void Run()
        {
            Workbook workbook = new Workbook();
            Worksheet worksheet = workbook.Worksheets[0];
            Cells cells = worksheet.Cells;

            // Set values and styles in source cell
            Cell sourceCell = cells["A1"];
            sourceCell.PutValue("Source Value");
            sourceCell.GetStyle().Font.IsBold = true;

            // Create destination cell
            Cell destCell = cells["B1"];

            // Copy from source to destination
            destCell.Copy(sourceCell);

            // Verify the copy
            Console.WriteLine("Destination cell value: " + destCell.StringValue);
            Console.WriteLine("Destination cell bold status: " + destCell.GetStyle().Font.IsBold);
        }
    }
}

See Also