Altova XMLSpy 2024 Enterprise Edition

Wird ersetzt durch AuthenticRange.IsDeleteEnabled

 

Die IsDeleteEnabled-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.IsEditClearEnabled)

//    Application.ActiveDocument.DocEditView.EditClear();

// use now:

var objCurrSelection = Application.ActiveDocument.AuthenticView.Selection;

if(objCurrSelection.IsDeleteEnabled)

  objCurrSelection.Delete();

 

Deklaration: IsEditClearEnabled als Boolean

 

Beschreibung

True, wenn EditClearmöglich ist. Siehe auch Bearbeitungsoperationen.

 

 

 

© 2017-2023 Altova GmbH