1904 Tarih Sistemi Uygulama

Contents
[ ]

Microsoft Excel’de (örneğin Microsoft Excel 2003) 1904 tarih sistemini uygulamak için:

  1. Araçlar menüsünden Seçenekler‘i seçin ve Hesaplama sekmesini seçin.
  2. 1904 tarih sistemi seçeneğini belirleyin.
  3. Tamam‘a tıklayın.
Microsoft Excel’de 1904 tarih sistemini seçme
todo:image_alt_text
Bunu, Aspose.Cells API’lerini kullanarak nasıl başarılır gösteren örnek kodu görün.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
// Initialize a new Workbook
// Open an excel file
Workbook workbook = new Workbook(dataDir+ "book1.xlsx");
// Implement 1904 date system
workbook.Settings.Date1904 = true;
// Save the excel file
workbook.Save(dataDir+ "Mybook.out.xlsx");