This is the discussion forum for the HtmlEditor. See also the
HtmlEditor home page, where you can download the control, and the
Documentation Wiki, a collaborative project for documenting the control.
Command identifiers
Posted by:
Kevin (---.dsl.irvnca.pacbell.net)
Date: Monday, 08-Jan-2007, 11:24:19
Can somebody help me find the "Command identifiers" for "doc.execCommand" that will work with C# I'm currently making a webbrowser that will allow you to personlize your favorite webpages.
and I'm stuck on a few things that I would like to have like how to change the "Page back color" not just the selected color...
******************************************************
mshtml.HTMLDocumentClass doc = (mshtml.HTMLDocumentClass)
this.axWebBrowser1.Document;
object empty = null;
colorDialog1.ShowDialog();
object selection = doc.selection.createRange();
doc.execCommand("Forecolor", false, colorDialog1.Color.Name);
******************************************************
Plus some other features that I would like to add that I can't seem to find.
Thanks in advanced.
Kevin