Excel) (保護物件
代表工作表上各種可以使用的保護選項。
註解
使用Worksheet物件的Protection屬性可傳回Protection物件。
傳回 Protection 物件之後,您可以使用 Protection 屬性來設定或傳回保護選項。
範例
下列範例會示範如何使用 Protection 物件的 AllowInsertingColumns 屬性,在最上面一列置入三個數字並保護工作表。 此範例接著會檢查允許插入資料行的保護設定是否為 False ,並視需要將它設定為 True。 最後,這個範例會通知使用者插入欄。
Sub SetProtection()
Range("A1").Formula = "1"
Range("B1").Formula = "3"
Range("C1").Formula = "4"
ActiveSheet.Protect
' Check the protection setting of the worksheet and act accordingly.
If ActiveSheet.Protection.AllowInsertingColumns = False Then
ActiveSheet.Protect AllowInsertingColumns:=True
MsgBox "Insert a column between 1 and 3"
Else
MsgBox "Insert a column between 1 and 3"
End If
End Sub
屬性
- AllowDeletingColumns
- AllowDeletingRows
- AllowEditRanges
- AllowFiltering
- AllowFormattingCells
- AllowFormattingColumns
- AllowFormattingRows
- AllowInsertingColumns
- AllowInsertingHyperlinks
- AllowInsertingRows
- AllowSorting
- AllowUsingPivotTables
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。