TableView.ShowNewItemRow 属性 (Outlook)

返回或设置一个 布尔 值,确定新的项行是否显示 对象中。 读/写

语法

expressionShowNewItemRow

表达 一个代表 TableView 对象的变量。

备注

此属性的值仅适用于 AllowInCellEditing 属性设置为 True

示例

下面的 Visual Basic for Applications (VBA) 示例配置当前的 对象以便允许单元格内编辑和显示在视图中新项行。

Private Sub ConfigureEditableView() 
 
 Dim objTableView As TableView 
 
 
 
 If Application.ActiveExplorer.CurrentView.ViewType = _ 
 
 olTableView Then 
 
 
 
 ' Obtain a TableView object reference for the 
 
 ' current table view. 
 
 Set objTableView = _ 
 
 Application.ActiveExplorer.CurrentView 
 
 
 
 With objTableView 
 
 ' ShowNewItemRow is ignored if 
 
 ' AllowInCellEditing is set to 
 
 ' False. 
 
 .AllowInCellEditing = True 
 
 
 
 ' Display the new item row in 
 
 ' the table view. 
 
 .ShowNewItemRow = True 
 
 
 
 ' Save the table view. 
 
 .Save 
 
 End With 
 
 End If 
 
End Sub

另请参阅

表对象

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。