Excel XP'den bu yana Gelişmiş Koruma Ayarları

Giriş

Bu koruma ayarları, kullanıcıların şunları yapmasına izin verir veya kısıtlar:

  • Satırları veya sütunları silin.
  • İçeriği, nesneleri veya senaryoları düzenleyin.
  • Hücreleri, satırları veya sütunları biçimlendirin.
  • Satırları, sütunları veya köprüleri ekleyin.
  • Kilitli veya kilidi açılmış hücreleri seçin.
  • Pivot tabloları ve çok daha fazlasını kullanın.

Aspose.Cells, Excel XP veya sonraki sürümleri tarafından sunulan tüm gelişmiş koruma ayarlarını destekler.

Excel XP ve Sonraki Sürümleri Kullanan Gelişmiş Koruma Ayarları

Excel XP’de bulunan koruma ayarlarını görüntülemek için:

  1. itibarenAraçlar menü, seçKoruma bunu takibenSayfayı Koruyun. Bir diyalog görüntülenecektir.

Excel 2016’da bulunan koruma ayarlarını görüntülemek için

  1. itibarenDosya menü, seçÇalışma Kitabını Koru bunu takibenGeçerli Sayfayı Koru.
  2. seçinSayfayı Koruyun içindeGözden geçirmek Menü.

Yukarıda belirtilen adımların ardından, çalışma sayfası özelliklerine izin verebileceğiniz veya kısıtlayabileceğiniz veya çalışma sayfasına bir parola uygulayabileceğiniz bir iletişim kutusu gösterilecektir.

Aspose.Cells Kullanarak Gelişmiş Koruma Ayarları

Aspose.Cells, tüm gelişmiş koruma ayarlarını destekler.

Aspose.Cells bir sınıf sağlar,Çalışma kitabı , bu bir Microsoft Excel dosyasını temsil eder. buÇalışma kitabı sınıf bir içerirçalışma sayfaları Excel dosyasındaki her çalışma sayfasına erişim sağlayan koleksiyon. Bir çalışma sayfası şununla temsil edilir:Çalışma kağıdısınıf.

buÇalışma kağıdı sınıf sağlarKoruma Bu gelişmiş koruma ayarlarını uygulamak için kullanılan özellik. buKoruma mülkiyet aslında bir nesnedirKorumakısıtlamaları devre dışı bırakmak veya etkinleştirmek için çeşitli Boolean özelliklerini kapsayan sınıf.

Aşağıda küçük bir örnek uygulama var. Bir Excel dosyasını açar ve Excel XP ve sonraki sürümleri tarafından desteklenen gelişmiş koruma ayarlarının çoğunu kullanır.

// 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);
// Creating a file stream containing the Excel file to be opened
FileStream fstream = new FileStream(dataDir + "book1.xls", FileMode.Open);
// Instantiating a Workbook object
// Opening the Excel file through the file stream
Workbook excel = new Workbook(fstream);
// Accessing the first worksheet in the Excel file
Worksheet worksheet = excel.Worksheets[0];
// Restricting users to delete columns of the worksheet
worksheet.Protection.AllowDeletingColumn = false;
// Restricting users to delete row of the worksheet
worksheet.Protection.AllowDeletingRow = false;
// Restricting users to edit contents of the worksheet
worksheet.Protection.AllowEditingContent = false;
// Restricting users to edit objects of the worksheet
worksheet.Protection.AllowEditingObject = false;
// Restricting users to edit scenarios of the worksheet
worksheet.Protection.AllowEditingScenario = false;
// Restricting users to filter
worksheet.Protection.AllowFiltering = false;
// Allowing users to format cells of the worksheet
worksheet.Protection.AllowFormattingCell = true;
// Allowing users to format rows of the worksheet
worksheet.Protection.AllowFormattingRow = true;
// Allowing users to insert columns in the worksheet
worksheet.Protection.AllowFormattingColumn = true;
// Allowing users to insert hyperlinks in the worksheet
worksheet.Protection.AllowInsertingHyperlink = true;
// Allowing users to insert rows in the worksheet
worksheet.Protection.AllowInsertingRow = true;
// Allowing users to select locked cells of the worksheet
worksheet.Protection.AllowSelectingLockedCell = true;
// Allowing users to select unlocked cells of the worksheet
worksheet.Protection.AllowSelectingUnlockedCell = true;
// Allowing users to sort
worksheet.Protection.AllowSorting = true;
// Allowing users to use pivot tables in the worksheet
worksheet.Protection.AllowUsingPivotTable = true;
// Saving the modified Excel file
excel.Save(dataDir + "output.xls", SaveFormat.Excel97To2003);
// Closing the file stream to free all resources
fstream.Close();

Cell Kilitleme Sorunu

Kullanıcıların hücreleri düzenlemesini kısıtlamak istiyorsanız, herhangi bir koruma ayarı uygulanmadan önce hücreler kilitlenmelidir. Aksi takdirde, çalışma sayfası korumalı olsa bile hücreler düzenlenebilir. Microsoft Excel XP’de hücreler aşağıdaki iletişim kutusu aracılığıyla kilitlenebilir:

Excel XP’de hücreleri kilitlemek için iletişim kutusu
yapılacaklar:resim_alternatif_metin

Aspose.Cells API kullanarak da hücreleri kilitlemek mümkündür. Her hücre alabilirstil Boole özelliği içeren biçimlendirme,Kilitli . Yı kurKilitli mülkiyetdoğru veyaYANLIŞ hücreyi kilitlemek veya kilidini açmak için

// 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);
Workbook workbook = new Workbook(dataDir + "Book1.xlsx");
// Accessing the first worksheet in the Excel file
Worksheet worksheet = workbook.Worksheets[0];
worksheet.Cells["A1"].GetStyle().IsLocked = true;
// Finally, Protect the sheet now.
worksheet.Protect(ProtectionType.All);
workbook.Save(dataDir + "output.xlsx");