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