OldAuthenticView.IsRowInsertEnabled (obsolete)
Superseded by AuthenticRange.IsInDynamicTable 
 The operations 'insert', 'append', 'delete' and 'duplicate' row are available whenever the selection is inside a dynamic table. 
 // ----- javascript sample ----- // instead of: // if (Application.ActiveDocument.DocEditView.IsRowInsertEnabled) // Application.ActiveDocument.DocEditView.RowInsert(); // use now: if (Application.ActiveDocument.AuthenticView.Selection.IsInDynamicTable()) Application.ActiveDocument.AuthenticView.Selection.InsertRow();  | 
Declaration: IsRowInsertEnabled as Boolean
Description
True if RowInsert is possible. See also Row operations.