次の方法で共有


TableView.ShowNewItemRow プロパティ (Outlook)

TableView オブジェクトに新しい項目の行が表示されるかどうかを決定する ブール 値を設定を取得または取得します。 読み取り/書き込み

構文

ShowNewItemRow

TableView オブジェクトを表す変数。

注釈

AllowInCellEditing プロパティが True に設定されている場合にのみ、このプロパティの値が適用されます。

次の Visual Basic for Applications (VBA) の例は、セル内編集を許可し、新しい項目の行がビューに表示されるように、現在の TableView オブジェクトを構成します。

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

関連項目

TableView オブジェクト

サポートとフィードバック

Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。