标签: delphi twebbrowser
使用TWebBrower如何获得撤消或重做状态(CanUndo,Can Redo)?
这总是假的?
Undo1.Enabled := HTMLDocument2Ifc.queryCommandValue( 'Undo' ); Redo1.Enabled := HTMLDocument2Ifc.queryCommandValue( 'Redo' );
答案 0 :(得分:4)
您正在寻找的方法可能是queryCommandEnabled方法。我猜Undo和Redo命令只有在浏览器位于edit mode时才会启用。