Protection.AllowInsertingColumns 屬性 (Excel)
如果允許使用者在受保護工作表上插入欄,則會傳回 True。 唯讀的 Boolean。
語法
運算式。AllowInsertingColumns
表達 代表 Protection 物件的變數。
註解
所插入的欄會承襲其左邊欄位的格式 (預設值),亦即表示該欄可能是鎖定的儲存格。 換句話說,使用者可能無法刪除他們所插入的欄。
AllowInsertingColumns屬性可以使用Protect方法引數來設定。
範例
本範例允許使用者在受保護工作表上插入欄,並通知使用者。
Sub ProtectionOptions()
ActiveSheet.Unprotect
' Allow columns to be inserted on a protected worksheet.
If ActiveSheet.Protection.AllowInsertingColumns = False Then
ActiveSheet.Protect AllowInsertingColumns:=True
End If
MsgBox "Columns can be inserted on this protected worksheet."
End Sub
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。