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