تجميد إلغاء تجميد الصفوف والأعمدة
Contents
[
Hide
]
يتناول هذا الموضوع معلومات حول تجميد وإلغاء تجميد الصفوف والأعمدة في ورقة العمل. يتيح تجميد الأعمدة أو الصفوف للمستخدمين الاحتفاظ بعناوين الأعمدة أو عناوين الصفوف مرئية أثناء قيامهم بالتمرير إلى أجزاء أخرى من ورقة العمل. هذه الميزة مفيدة للغاية في التمرير عبر أوراق العمل التي تحتوي على كميات ضخمة من البيانات. لأنه ، في مثل هذه الحالات ، عندما يقوم المستخدمون بتمرير البيانات ، سيتم تمرير البيانات فقط لأسفل وستبقى العناوين هناك لزيادة إمكانية قراءة البيانات.
أعمدة التجميد
لتجميد أعمدة ورقة العمل باستخدام Aspose.Cells.GridDesktop ، يرجى اتباع الخطوات التالية:
- الوصول إلى أي ملفاتورقة عمل
- اضبط عددأعمدة مجمدة في الورقة عمل
This file contains hidden or 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 | |
// Accessing the worksheet of the Grid that is currently active | |
Worksheet sheet = gridDesktop1.GetActiveWorksheet(); | |
// Setting the number of frozen columns to 2 | |
sheet.FrozenCols = 2; |
أعمدة غير مجمدة
لإلغاء تجميد أعمدة ورقة العمل باستخدام Aspose.Cells.GridDesktop ، يرجى اتباع الخطوات التالية:
- الوصول إلى أي ملفاتورقة عمل
- اضبط عددأعمدة مجمدة في الورقة عمل إلى الصفر (0). سينتج تأثير الأعمدة غير المجمدة
This file contains hidden or 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 | |
// Accessing the worksheet of the Grid that is currently active | |
Worksheet sheet = gridDesktop1.GetActiveWorksheet(); | |
// Setting the number of frozen columns to 0 for unfreezing columns | |
sheet.FrozenCols = 0; |
صفوف التجميد
لتجميد صفوف ورقة العمل باستخدام Aspose.Cells.GridDesktop ، يرجى اتباع الخطوات التالية:
- الوصول إلى أي ملفاتورقة عمل
- اضبط عددصفوف مجمدة في الورقة عمل
This file contains hidden or 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 | |
// Accessing the worksheet of the Grid that is currently active | |
Worksheet sheet = gridDesktop1.GetActiveWorksheet(); | |
// Setting the number of frozen rows to 2 | |
sheet.FrozenRows = 2; |
صفوف Un-Freezing
لإلغاء تجميد صفوف ورقة العمل باستخدام Aspose.Cells.GridDesktop ، يرجى اتباع الخطوات التالية:
- الوصول إلى أي ملفاتورقة عمل
- اضبط عددصفوف مجمدة في الورقة عمل إلى الصفر (0). سينتج تأثير الصفوف غير المجمدة
This file contains hidden or 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 | |
// Accessing the worksheet of the Grid that is currently active | |
Worksheet sheet = gridDesktop1.GetActiveWorksheet(); | |
// Setting the number of frozen rows to 0 for unfreezing rows | |
sheet.FrozenRows = 0; |