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