Aspose.Cells.Examples.CSharp.Articles.WorkingWithHTMLFormat.ExpandTextFromRightToLeft.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);
            
            // Load source excel file inside the workbook object
            Workbook wb = new Workbook(dataDir + "sample.xlsx");

            // Save workbook in html format
            wb.Save(dataDir + "ExpandTextFromRightToLeft_out_" + CellsHelper.GetVersion() + ".html", SaveFormat.Html);
            // ExEnd:1           
            
        }
    }
ExpandTextFromRightToLeft