OldAuthenticView.IsRowDeleteEnabled (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.IsRowDeleteEnabled) // Application.ActiveDocument.DocEditView.Rowdelete(); // use now: if (Application.ActiveDocument.AuthenticView.Selection.IsInDynamicTable()) Application.ActiveDocument.AuthenticView.Selection.DeleteRow();  | 
Declaration: IsRowDeleteEnabled as Boolean
Description
True if RowDelete is possible. See also Row operations.