OldAuthenticView.RowDuplicate (obsolete)
Superseded by AuthenticRange.DuplicateRow
The table operations of AuthenticRange now allow to manipulate any table in the current document independent of the current UI selection.
// ----- javascript sample ----- // instead of: // Application.ActiveDocument.DocEditView.RowDuplicate(); // use now: if (! Application.ActiveDocument.AuthenticView.Selection.DuplicateRow()) MsgBox ("Error: can't duplicate row"); |
Declaration: RowDuplicate
Description
The method duplicates the currently selected rows.
See also Row operations.