Aspose.Cells.Examples.CSharp.Worksheets.Value.CopyWithinWorkbook.Run C# (CSharp) Method

Run() public static method

public static Run ( ) : void
return void
        public static void Run()
        {
            // ExStart:1
            // The path to the documents directory.
            string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);

            string InputPath = dataDir + "book1.xls";

            // Open an existing Excel file.
            Workbook wb = new Workbook(InputPath);

            // Create a Worksheets object with reference to
            // the sheets of the Workbook.
            WorksheetCollection sheets = wb.Worksheets;

            // Copy data to a new sheet from an existing
            // sheet within the Workbook.
            sheets.AddCopy("Sheet1");

            // Save the Excel file.
            wb.Save(dataDir + "CopyWithinWorkbook_out.xls");
            // ExEnd:1
        }
    }
CopyWithinWorkbook