Obsolete: Authentic视图 Editing operations
When XML data is displayed as data in Authentic视图, it is possible to manipulate individual elements using standard editing operations such as cut, copy, and paste. However, not all XML data nodes can be edited. So, in order to carry out an editing operation, first a property is used to test whether editing is possible, and then a method is called to perform the editing operation.
The only method that does not have a test is the method EditSelectAll, which automatically selects all elements displayed in the document.
The following is a list of properties and methods that perform editing operations. Each property returns a BOOL, and the methods have no parameter.
Property | Method | Editing operation |
IsEditUndoEnabled | EditUndo, superseded by AuthenticView.Undo | Undo an editing operation |
IsEditRedoEnabled | EditRedo, superseded by AuthenticView.Redo | Redo an editing operation |
IsEditCopyEnabled | EditCopy, superseded by AuthenticRange.Copy | Copy selected text to the clipboard |
IsEditCutEnabled | EditCut, superseded by AuthenticRange.Cut | Cut selected text to the clipboard |
IsEditPasteEnabled | EditPaste, superseded by AuthenticRange.Paste | Paste from clipboard to current cursor position |
IsEditClearEnabled | EditClear, superseded by AuthenticRange.Delete | Clear selected text from XML document |