OldAuthenticView.IsEditCopyEnabled (nicht mehr verwendet)
Wird ersetzt durch AuthenticRange.IsCopyEnabled
Die IIsCopyEnabled-Eigenschaft wird nun für jeden Bereich des Dokuments und nicht nur für die aktuelle Auswahl auf der Benutzeroberfläche unterstützt.
// ----- javascript sample ----- // instead of: // if (Application.ActiveDocument.DocEditView.IsEditCopyEnabled) // Application.ActiveDocument.DocEditView.EditCopy(); // use now: var objCurrSelection = Application.ActiveDocument.AuthenticView.Selection; if(objCurrSelection.IsCopyEnabled) objCurrSelection.Copy(); |
Deklaration: IsEditCopyEnabled als Boolean
Beschreibung
True, wenn das Kopieren in die Zwischenablage möglich ist. Siehe auch EditCopyund Bearbeitungsoperationen.