Stil.Custom Özelliğini Ayarlarken Özel Sayı Biçimini Kontrol Edin

Olası Kullanım Senaryoları

Eğer geçersiz özel sayı biçimini Style.Custom özelliğine atarsanız, Aspose.Cells herhangi bir istisna fırlatmaz. Ancak Aspose.Cells’in atanan özel sayı biçiminin geçerli olup olmadığını kontrol etmesini istiyorsanız, lütfen Workbook.Settings.CheckCustomNumberFormat özelliğini true olarak ayarlayın.

Stil.Custom özelliğine özel sayı biçimini atayan aşağıdaki örnek kod geçersiz özel sayı biçimini {0} özelliğine atar. Zaten {1} özelliğini true olarak ayarladığımızdan dolayı, API, Geçersiz sayı biçimi gibi bir hata fırlatacaktır.

Aşağıdaki örnek kod, Style.Custom özelliğine geçersiz özel sayı formatı atar. Zaten Workbook.Settings.CheckCustomNumberFormat özelliğini true olarak ayarladığımızdan, API Invalid number format yani Geçersiz sayı formatı hata fırlatacaktır..

Örnek Kod

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
// Create a workbook
Workbook wb = new Workbook();
// Setting this property to true will make Aspose.Cells to throw exception
// when invalid custom number format is assigned to Style.Custom property
wb.getSettings().setCheckCustomNumberFormat(true);
// Access first worksheet
Worksheet ws = wb.getWorksheets().get(0);
// Access cell A1 and put some number inside it
Cell c = ws.getCells().get("A1");
c.putValue(2347);
// Access cell's style and set its Style.Custom property
Style s = c.getStyle();
try {
// This line will throw exception if
// Workbook.Settings.CheckCustomNumberFormat is set to true
s.setCustom("ggg @ fff"); // Invalid custom number format
c.setStyle(s);
}
catch (Exception ex) {
System.out.println("Exception Occured");
}
System.out.println("Done");