Protection.AllowInsertingColumns 属性 (Excel)
如果允许在受保护的工作表上插入列,则返回 True。 只读 Boolean。
语法
表达式。AllowInsertingColumns
表达 一个代表 Protection 对象的变量。
备注
默认情况下,插入的列继承了其左边的列的格式设置,这意味着该列可能包含锁定的单元格。 也就是说,用户可能不能删除插入的列。
可以使用 Protect 方法参数设置 AllowInsertingColumns 属性。
示例
本示例允许用户在受保护的工作表上插入列,并通知用户。
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 支持和反馈,获取有关如何接收支持和提供反馈的指南。