Aspose.Cells.Examples.CSharp.Articles.SetWorksheetTabColor.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);

            // Instantiate a new Workbook
            // Open an Excel file
            Workbook workbook = new Workbook(dataDir+ "Book1.xlsx");

            // Get the first worksheet in the book
            Worksheet worksheet = workbook.Worksheets[0];

            // Set the tab color
            worksheet.TabColor = Color.Red;

            // Save the Excel file
            workbook.Save(dataDir+ "worksheettabcolor.out.xls");
            // ExEnd:1
        }
    }
SetWorksheetTabColor