OldAuthenticView.IsRowMoveDownEnabled (obsolete)
Superseded by AuthenticRange.IsLastRow
// ----- javascript sample ----- // instead of: // if (Application.ActiveDocument.OldAuthenticView.IsRowMoveDownEnabled) // Application.ActiveDocument.DocEditView.RowMoveDown(); // use now: if (!Application.ActiveDocument.AuthenticView.Selection.IsLastRow) Application.ActiveDocument.AuthenticView.Selection.MoveRowDown(); |
Declaration: IsRowMoveDownEnabled as Boolean
Description
True if RowMoveDown is currently possible. See also Row operations.