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

            // Specify the load options and filter the data
            // We do not want to load charts
            LoadOptions options = new LoadOptions();
            options.LoadDataFilterOptions = LoadDataFilterOptions.All & ~LoadDataFilterOptions.Chart;

            // Load the workbook with specified load options
            Workbook workbook = new Workbook(dataDir + "sample.xlsx", options);

            // Save the workbook in output format
            workbook.Save(dataDir + "LoadExcelFileWithoutChart_out.pdf", SaveFormat.Pdf);
            // ExEnd:1           
            
        }
    }
LoadExcelFileWithoutChart