تحقق من تنسيق الأرقام المخصص عند ضبط Style.Custom الملكية
Contents
[
Hide
]
سيناريوهات الاستخدام الممكنة
إذا قمت بتعيين تنسيق رقم مخصص غير صالح إلىStyle.Customالخاصية ، فلن يطرح Aspose.Cells أي استثناء. ولكن إذا كنت تريد أن يتحقق Aspose.Cells مما إذا كان تنسيق الرقم المخصص المعين صالحًا أم لا ، فالرجاء تعيينالمصنف.الإعدادات ملكية لحقيقي.
تحقق من تنسيق الأرقام المخصص عند تعيين خاصية Style.Custom
يعيّن نموذج التعليمات البرمجية التالي تنسيق رقم مخصص غير صالح لـStyle.Custom خاصية. منذ ذلك الحين ، قمنا بالفعل بتعيينالمصنف.الإعدادات ملكية لحقيقي، لذلك فإنه يطرح استثناء ، على سبيل المثال تنسيق رقم غير صالح. يرجى قراءة التعليقات داخل الكود لمزيد من المساعدة.
عينة من الرموز
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// Create an instance of Workbook class | |
Workbook book = 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 | |
book.Settings.CheckCustomNumberFormat = true; | |
// Access first worksheet | |
Worksheet sheet = book.Worksheets[0]; | |
// Access cell A1 and put some number to it | |
Cell cell = sheet.Cells["A1"]; | |
cell.PutValue(2347); | |
// Access cell's style and set its Style.Custom property | |
Style style = cell.GetStyle(); | |
// This line will throw exception if Workbook.Settings.CheckCustomNumberFormat is set to true | |
style.Custom = "ggg @ fff"; //Invalid custom number format |