Aspose.Cells.Examples.CSharp.Articles.StylingAndDataFormatting.RenderCustomDateFormat.Run C# (CSharp) Method

Run() public static method

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

            Workbook workbook = new Workbook(dataDir + "SourceFile.xlsx");
            workbook.Save(dataDir + "CustomDateFormat_out.pdf");
            // ExEnd:RenderCustomDateFormatPatterngandgemmdd
        }
    }
RenderCustomDateFormat