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' );
link|improve this question

55% accept rate
feedback

1 Answer

up vote 4 down vote accepted

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.

link|improve this answer
@TOndrej... thank-you... that did the trick. – Bill Dec 10 '11 at 18:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.