الحصول على معرّف الورقة العمل فريد
Contents
[
Hide
]
الحصول على معرف فريد لورقة العمل
توفر Aspose.Cells القدرة على الحصول على معرف فريد لورقة العمل باستخدام الخاصية Worksheet.UniqueId. يوضح مقتطف الكود التالي استخدام الخاصية Worksheet.UniqueId لطباعة المعرف الفريد لورقة العمل. يستخدم مثال الكود التالي هذا ملف إكسل نموذجي.
كود المصدر
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 | |
// Source directory | |
string sourceDir = RunExamples.Get_SourceDirectory(); | |
// Load source Excel file | |
Workbook workbook = new Workbook(sourceDir + "Book1.xlsx"); | |
// Access first worksheet | |
Worksheet worksheet = workbook.Worksheets[0]; | |
// Print Unique Id | |
Console.WriteLine("Unique Id: " + worksheet.UniqueId); |