OldAuthenticView.IsRowMoveUpEnabled
Superseded by AuthenticRange.IsFirstRow
// ----- javascript sample ----- // instead of: // if (Application.ActiveDocument.DocEditView.IsRowMoveUpEnabled) // Application.ActiveDocument.DocEditView.RowMoveUp(); // use now: if (!Application.ActiveDocument.AuthenticView.Selection.IsFirstRow) Application.ActiveDocument.AuthenticView.Selection.MoveRowUp(); |
Declaration: IsRowMoveUpEnabled as Boolean
Description
True if RowMoveUp is possible. See also Row operations.