OldAuthenticView.IsRowMoveDownEnabled (nicht mehr verwendet)
Wird ersetzt durch 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(); |
Deklaration: IsRowMoveDownEnabled als Boolean
Beschreibung
True, wenn RowMoveDownmöglich ist. Siehe auch Zeilenoperationen.