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' );
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.