With a TWebBrower how can you get the undo or redo state (CanUndo, Can Redo)?
This always is false?
Undo1.Enabled := HTMLDocument2Ifc.queryCommandValue( 'Undo' );
Redo1.Enabled := HTMLDocument2Ifc.queryCommandValue( 'Redo' );
|
With a TWebBrower how can you get the undo or redo state (CanUndo, Can Redo)? This always is false?
| ||||
|
feedback
|
|
What you're looking for might be queryCommandEnabled method. I guess Undo and Redo commands will only be enabled when the browser is in edit mode. | |||
|
feedback
|