205
Is it possible to show just expressions
axEdit1.AddWild("<fgcolor=00FF00>(");
axEdit1.AddWild("<fgcolor=00FF00>)");
axEdit1.AddExpression("<fgcolor=FF0000><b>(*","<fgcolor=FF0000> ","<fgcolor=FF0000><b>*)",null,null);
axEdit1.InsertText("some text ( another text ) other text\\r\\n",1);
axEdit1.InsertText("some text (* another text *) other text\\r\\n",1);
axEdit1.Show = "expression";

204
How can I stop any highlight
axEdit1.AddWild("<fgcolor=00FF00>(");
axEdit1.AddWild("<fgcolor=00FF00>)");
axEdit1.AddExpression("<fgcolor=FF0000><b>(*","<fgcolor=FF0000> ","<fgcolor=FF0000><b>*)",null,null);
axEdit1.InsertText("some text ( another text ) other text\\r\\n",1);
axEdit1.InsertText("some text (* another text *) other text\\r\\n",1);
axEdit1.Show = "";

203
How can I highlight the start of the line until a specified character is found

axEdit1.AddExpression("^","<fgcolor=FF0000> ",":",null,null);
axEdit1.Refresh();

202
Can I use code completion without any UI
axEdit1.CodeCompletion = EXEDITLib.CodeCompletionEnum.exCodeCompletionEnableNoUI;
axEdit1.AddKeyword("<b>class</b>","this is a bit of text that's shown when the cursor hovers the <b>class</b> keyword.","exontrol.edit",null);
axEdit1.Refresh();
axEdit1.get_Context(null).Add("class",null,null,null);

201
How can I hide the control's horizontal scroll bar
axEdit1.ScrollBars = EXEDITLib.ScrollBarsEnum.exVertical;

200
Is it possible to change the line's height

axEdit1.LineHeight = "value + 8 * dpi";
axEdit1.DrawGridLines = true;

199
How to bold everything between two * (asterisk) characters

stdole.IFontDisp var_StdFont = axEdit1.Font;
	var_StdFont.Name = "Consolas";
	var_StdFont.Size = 12;
axEdit1.AddExpression("<fgcolor=FF0000><b>*","<fgcolor=FF0000> ","<fgcolor=FF0000><b>*",null,null);
axEdit1.InsertText("some text * another text * other text\\r\\n",1);
axEdit1.Refresh();

198
How to bold everything that starts with * (asterisk), to the end of the line

stdole.IFontDisp var_StdFont = axEdit1.Font;
	var_StdFont.Name = "Consolas";
	var_StdFont.Size = 12;
axEdit1.AddWild("<fgcolor=FF0000><b>\\**");
axEdit1.InsertText("some text * another text * other text\\r\\n",1);
axEdit1.Refresh();

197
How to make a * (asterisk) bold, not the entire / rest line

stdole.IFontDisp var_StdFont = axEdit1.Font;
	var_StdFont.Name = "Consolas";
	var_StdFont.Size = 12;
axEdit1.AddWild("<fgcolor=FF0000><b>\\*");
axEdit1.InsertText("some text * another text * other text\\r\\n",1);
axEdit1.Refresh();

196
How can I change the control's font (template)

axEdit1.Template = "Font { Name = `Consolas`; Size = 12 }";
axEdit1.AddKeyword("<fgcolor=FF0000>class</fgcolor>",null,null,null);
axEdit1.Refresh();

195
How can I change the control's font (runtime)

stdole.IFontDisp var_StdFont = axEdit1.Font;
	var_StdFont.Name = "Consolas";
	var_StdFont.Size = 12;
axEdit1.AddKeyword("<fgcolor=FF0000>class</fgcolor>",null,null,null);
axEdit1.Refresh();

194
When I click and drag to try and select some text, sometimes my cursor turns into a hand and drags the whole text in the window around. I would like to disable this feature, could you tell me what it is called so I can disable it please
axEdit1.OLEDropMode = EXEDITLib.exOLEDropModeEnum.exOLEDropAutomatic;

193
How can I display information about events the control fires

// Event event - Notifies the application once the control fires an event.
private void axEdit1_Event(object sender, AxEXEDITLib._IEditEvents_EventEvent e)
{
	System.Diagnostics.Debug.Print( axEdit1.get_EventParam(-2).ToString() );
}
//this.axEdit1.Event += new AxEXEDITLib._IEditEvents_EventEventHandler(this.axEdit1_Event);

axEdit1.AddWild("<fgcolor=808080>(?*)</fgcolor>");
axEdit1.AddKeyword("<b>class</b>","a set or category of things having some property or attribute in common and differentiated from others by kind, type, or qualit" +
"y",null,null);
axEdit1.Refresh();

192
How do I highlights words based on wild characters

axEdit1.AddWild("<fgcolor=0000FF><b>[MC]*_HANDLER*</b></fgcolor>(*)");
axEdit1.Refresh();

191
How do I highlights words based on wild characters

axEdit1.AddWild("<fgcolor=0000FF><b> *</b></fgcolor>(*)*;");
axEdit1.Refresh();

190
How can I provide different tooltip for the same keyword

// QueryContext event - Queries for the context at the specified location, to provide different tooltips for the same keyword on QueryContextToolTip event.
private void axEdit1_QueryContext(object sender, AxEXEDITLib._IEditEvents_QueryContextEvent e)
{
	e.qContext = e.yCursor;
}
//this.axEdit1.QueryContext += new AxEXEDITLib._IEditEvents_QueryContextEventHandler(this.axEdit1_QueryContext);

// QueryContextToolTip event - Asks for the tooltip/title of the keyword on the context retrieved by the QueryContext event.
private void axEdit1_QueryContextToolTip(object sender, AxEXEDITLib._IEditEvents_QueryContextToolTipEvent e)
{
	e.qToolTip = e.qContext;
	e.qToolTipTitle = "Keyword Found At Line:";
}
//this.axEdit1.QueryContextToolTip += new AxEXEDITLib._IEditEvents_QueryContextToolTipEventHandler(this.axEdit1_QueryContextToolTip);

axEdit1.LineNumberWidth = -1;
axEdit1.LineNumberBackColor = Color.FromArgb(240,240,240);
axEdit1.AddKeyword("<fgcolor=FF0000><b>keyword</b></fgcolor>",null,null,null);
axEdit1.Text = "";
axEdit1.InsertText("here's the keyword on the first line",null);
axEdit1.InsertText("\\r\\nhere's the keyword on the second line",null);
axEdit1.InsertText("\\r\\nhere's the keyword on the third line",null);

189
Is it possible to left, right or center align the inline tooltip

axEdit1.LineNumberWidth = -1;
axEdit1.LineNumberBackColor = Color.FromArgb(240,240,240);
axEdit1.CaretLine = 6;
axEdit1.set_Background(EXEDITLib.BackgroundPartEnum.exTempInlineToolTipBackColor,(uint)ColorTranslator.ToWin32(Color.FromArgb(240,240,240)));
axEdit1.TempInlineToolTip = "<font ;6>Left Alignment<br><c>Center Alignment<br><r>Right Alignment";
axEdit1.Refresh();

188
Is it possible to display the inline tooltip with a different appearance than temporarily inline tooltip

axEdit1.LineNumberWidth = -1;
axEdit1.LineNumberBackColor = Color.FromArgb(240,240,240);
axEdit1.AddKeyword("<b>class</b>","<r>a set or category of things having some property or attribute in common and differentiated from others by kind, type, or qua" +
"lity.",null,null);
axEdit1.AllowInlineToolTip = EXEDITLib.AllowInlineToolTipEnum.exInlineToolTipWordWrap | EXEDITLib.AllowInlineToolTipEnum.exInlineToolTip;
axEdit1.set_Background(EXEDITLib.BackgroundPartEnum.exInlineToolTipForeColor,(uint)ColorTranslator.ToWin32(Color.FromArgb(128,128,128)));
axEdit1.set_Background(EXEDITLib.BackgroundPartEnum.exInlineToolTipBackColor,(uint)ColorTranslator.ToWin32(Color.FromArgb(240,240,240)));
axEdit1.CaretLine = 6;
axEdit1.set_Background(EXEDITLib.BackgroundPartEnum.exTempInlineToolTipBackColor,(uint)ColorTranslator.ToWin32(Color.FromArgb(255,40,0)));
axEdit1.set_Background(EXEDITLib.BackgroundPartEnum.exTempInlineToolTipForeColor,(uint)ColorTranslator.ToWin32(Color.FromArgb(0,0,1)));
axEdit1.TempInlineToolTip = "<br><c><font ;12>This is a bit of text that's shown temporarily only. <br><c>Now, click the <off -4><b>class</b></off> keyword," +
" in the top...<br>";
axEdit1.Refresh();

187
How can I display the inline tooltip over the lines, instead pushing the lines

axEdit1.LineNumberWidth = -1;
axEdit1.LineNumberBackColor = Color.FromArgb(240,240,240);
axEdit1.set_Background(EXEDITLib.BackgroundPartEnum.exTempInlineToolTipBackColor,(uint)ColorTranslator.ToWin32(Color.FromArgb(255,255,0)));
axEdit1.CaretLine = 3;
axEdit1.TempInlineToolTip = "This is a bit of text that's shown under the current line, and it is displayed as soon as the control's caret is changed.";
axEdit1.AllowInlineToolTip = EXEDITLib.AllowInlineToolTipEnum.exInlineToolTipWordWrap | EXEDITLib.AllowInlineToolTipEnum.exInlineToolTipOver;
axEdit1.Refresh();

186
Is it possible to display the inline tooltip all the time

// SelChange event - Occurs when the user selects text in the control.
private void axEdit1_SelChange(object sender, EventArgs e)
{
	axEdit1.TempInlineToolTip = "This is a bit of text that's shown under the current line, and it is displayed as soon as the control's caret is changed.";
}
//this.axEdit1.SelChange += new EventHandler(this.axEdit1_SelChange);

axEdit1.LineNumberWidth = -1;
axEdit1.LineNumberBackColor = Color.FromArgb(240,240,240);
axEdit1.set_Background(EXEDITLib.BackgroundPartEnum.exTempInlineToolTipBackColor,(uint)ColorTranslator.ToWin32(Color.FromArgb(255,255,0)));
axEdit1.CaretLine = 12;
axEdit1.AllowInlineToolTip = EXEDITLib.AllowInlineToolTipEnum.exInlineToolTipWordWrap;
axEdit1.Refresh();

185
Is it possible to display images in the inline tooltip

axEdit1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
axEdit1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axEdit1.LineNumberWidth = -1;
axEdit1.LineNumberBackColor = Color.FromArgb(240,240,240);
axEdit1.CaretLine = 4;
axEdit1.set_Background(EXEDITLib.BackgroundPartEnum.exTempInlineToolTipBackColor,0x1000000);
axEdit1.AllowInlineToolTip = EXEDITLib.AllowInlineToolTipEnum.exInlineToolTipWordWrap;
axEdit1.TempInlineToolTip = "<img>1</img>This is a bit of text that's shown programatically under the current line";

184
How can I change the visual appearance of the temporarily inline tooltip

axEdit1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
axEdit1.LineNumberWidth = -1;
axEdit1.LineNumberBackColor = Color.FromArgb(240,240,240);
axEdit1.CaretLine = 4;
axEdit1.set_Background(EXEDITLib.BackgroundPartEnum.exTempInlineToolTipBackColor,0x1000000);
axEdit1.AllowInlineToolTip = EXEDITLib.AllowInlineToolTipEnum.exInlineToolTipWordWrap;
axEdit1.TempInlineToolTip = "This is a bit of text that's shown programatically under the current line";

183
How can I display programmatically the inline tooltip, but using word-wrapping

axEdit1.LineNumberWidth = -1;
axEdit1.LineNumberBackColor = Color.FromArgb(240,240,240);
axEdit1.CaretLine = 4;
axEdit1.set_Background(EXEDITLib.BackgroundPartEnum.exTempInlineToolTipBackColor,(uint)ColorTranslator.ToWin32(Color.FromArgb(240,240,240)));
axEdit1.AllowInlineToolTip = EXEDITLib.AllowInlineToolTipEnum.exInlineToolTipWordWrap;
axEdit1.TempInlineToolTip = "This is a bit of text that's shown programatically under the current line";

182
How can I display programmatically the inline tooltip

axEdit1.LineNumberWidth = -1;
axEdit1.LineNumberBackColor = Color.FromArgb(240,240,240);
axEdit1.CaretLine = 4;
axEdit1.set_Background(EXEDITLib.BackgroundPartEnum.exTempInlineToolTipBackColor,(uint)ColorTranslator.ToWin32(Color.FromArgb(240,240,240)));
axEdit1.TempInlineToolTip = "<br><c>This is a bit of text that's shown programatically under the current line<br>";

181
How can I show the inline tooltip with a different appearance

axEdit1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
axEdit1.LineNumberWidth = -1;
axEdit1.LineNumberBackColor = Color.FromArgb(240,240,240);
axEdit1.AddKeyword("<b>class</b>","a set or category of things having some property or attribute in common and differentiated from others by kind, type, or qualit" +
"y.",null,null);
axEdit1.AllowInlineToolTip = EXEDITLib.AllowInlineToolTipEnum.exInlineToolTipWordWrap | EXEDITLib.AllowInlineToolTipEnum.exInlineToolTip;
axEdit1.set_Background(EXEDITLib.BackgroundPartEnum.exInlineToolTipBackColor,0x1000000);
axEdit1.set_Background(EXEDITLib.BackgroundPartEnum.exInlineToolTipForeColor,(uint)ColorTranslator.ToWin32(Color.FromArgb(128,0,0)));
axEdit1.Refresh();

180
Is it possible to prevent moving the lines after the inline tooltip

axEdit1.LineNumberWidth = -1;
axEdit1.LineNumberBackColor = Color.FromArgb(240,240,240);
axEdit1.AddKeyword("<b>class</b>","a set or category of things having some property or attribute in common and differentiated from others by kind, type, or qualit" +
"y.",null,null);
axEdit1.AllowInlineToolTip = EXEDITLib.AllowInlineToolTipEnum.exInlineToolTipWordWrap | EXEDITLib.AllowInlineToolTipEnum.exInlineToolTipOver | EXEDITLib.AllowInlineToolTipEnum.exInlineToolTip;
axEdit1.set_Background(EXEDITLib.BackgroundPartEnum.exInlineToolTipBackColor,(uint)ColorTranslator.ToWin32(Color.FromArgb(255,255,0)));
axEdit1.Refresh();

179
How can I display the inline tooltip, when typing only

axEdit1.LineNumberWidth = -1;
axEdit1.LineNumberBackColor = Color.FromArgb(240,240,240);
axEdit1.ToolTipOnTyping = false;
axEdit1.AddKeyword("<b>class</b>","a set or category of things having some property or attribute in common and differentiated from others by kind, type, or qualit" +
"y.",null,null);
axEdit1.AllowInlineToolTip = EXEDITLib.AllowInlineToolTipEnum.exInlineToolTipWordWrap | EXEDITLib.AllowInlineToolTipEnum.exInlineToolTipOnChange;
axEdit1.set_Background(EXEDITLib.BackgroundPartEnum.exInlineToolTipBackColor,(uint)ColorTranslator.ToWin32(Color.FromArgb(240,240,240)));
axEdit1.Refresh();

178
How do I enable the inline tooltip support

axEdit1.LineNumberWidth = -1;
axEdit1.LineNumberBackColor = Color.FromArgb(240,240,240);
axEdit1.AddKeyword("<b>class</b>","a set or category of things having some property or attribute in common and differentiated from others by kind, type, or qualit" +
"y.",null,null);
axEdit1.AllowInlineToolTip = EXEDITLib.AllowInlineToolTipEnum.exInlineToolTipWordWrap | EXEDITLib.AllowInlineToolTipEnum.exInlineToolTip;
axEdit1.set_Background(EXEDITLib.BackgroundPartEnum.exInlineToolTipForeColor,(uint)ColorTranslator.ToWin32(Color.FromArgb(128,128,128)));
axEdit1.Refresh();

177
How do I display a tooltip for a non-keyword

// MouseMove event - Occurs when the user moves the mouse.
private void axEdit1_MouseMoveEvent(object sender, AxEXEDITLib._IEditEvents_MouseMoveEvent e)
{
	axEdit1.ShowToolTip(axEdit1.get_WordFromPoint(-1,-1,null),null,null,"+8","+8");
}
//this.axEdit1.MouseMoveEvent += new AxEXEDITLib._IEditEvents_MouseMoveEventHandler(this.axEdit1_MouseMoveEvent);


176
How do I get the text from the cursor

// MouseMove event - Occurs when the user moves the mouse.
private void axEdit1_MouseMoveEvent(object sender, AxEXEDITLib._IEditEvents_MouseMoveEvent e)
{
	System.Diagnostics.Debug.Print( axEdit1.get_WordFromPoint(-1,-1,null) );
}
//this.axEdit1.MouseMoveEvent += new AxEXEDITLib._IEditEvents_MouseMoveEventHandler(this.axEdit1_MouseMoveEvent);


175
I've noticed that while I type, the control's sensitive context selects the item that contains the typing word, so the question is how can I disable it
EXEDITLib.Context var_Context = axEdit1.get_Context(null);
	var_Context.Add("exText",null,null,null);
	var_Context.Add("exHTML",null,null,null);
	var_Context.set_Options(EXEDITLib.ContextOptionEnum.exContextDisableIncrementalSearchContains,true);
axEdit1.Text = "";
axEdit1.InsertText("Press CTRL+SPACE, and type h, so the exHTML is not selected.",null);

174
I have a context that inserts some comments, it is possible to set the cursor before comment begins, when user selects a value from the control's sensitive context
axEdit1.AddExpression("<fgcolor=008000>'</fgcolor>","<fgcolor=008000> </fgcolor>","",null,null);
EXEDITLib.Context var_Context = axEdit1.get_Context(null);
	var_Context.Add("exText (0)","0 ' specifies the exText flag",null,null);
	var_Context.Add("exHTML (-1)","-1 ' specifies the exHTML flag",null,null);
	var_Context.set_Options(EXEDITLib.ContextOptionEnum.exContextInsertCaretPos,"(0:=value lfind `'`) < 0 ? -1 : ( =:0 - (len(1:=(value left =:0)) - len(ltrim(reverse(=:1)))))");
axEdit1.Text = "";
axEdit1.InsertText("Press CTRL + SPACE, and select any item, a number is inserted",null);

173
How can I show a different sensitive context when user press a key/character

// Change event - Indicates that the control's text have changed.
private void axEdit1_Change(object sender, EventArgs e)
{
	axEdit1.ShowContext(axEdit1.ChangeOnKey);
	axEdit1.ActiveContextItems = "";
}
//this.axEdit1.Change += new EventHandler(this.axEdit1_Change);

axEdit1.Text = "";
axEdit1.InsertText("Press .(dot), :(color) or =(equal), to get different sensitive context",null);
axEdit1.ActiveContextItems = "";
EXEDITLib.Context var_Context = axEdit1.get_Context("61");
	var_Context.Add("Equal_1",null,null,null);
	var_Context.Add("Equal_2",null,null,null);
EXEDITLib.Context var_Context1 = axEdit1.get_Context("46");
	var_Context1.Add("Dot_1",null,null,null);
	var_Context1.Add("Dot_2",null,null,null);
EXEDITLib.Context var_Context2 = axEdit1.get_Context("58");
	var_Context2.Add("Colon_1",null,null,null);
	var_Context2.Add("Colon_2",null,null,null);

172
How can I allow spaces when control's sentitive context is shown/opened

// Change event - Indicates that the control's text have changed.
private void axEdit1_Change(object sender, EventArgs e)
{
	axEdit1.ShowContext(axEdit1.ChangeOnKey);
	axEdit1.ActiveContextItems = "";
}
//this.axEdit1.Change += new EventHandler(this.axEdit1_Change);

EXEDITLib.Context var_Context = axEdit1.get_Context("61");
	var_Context.Add("True (-1)","True",null,null);
	var_Context.Add("False (-1)","False",null,null);
	var_Context.set_Options(EXEDITLib.ContextOptionEnum.exContextAllowSpaceOnFront,true);
axEdit1.Text = "";
axEdit1.InsertText("Press the = key and after that press the space keys",null);
axEdit1.InsertText("",null);

171
How can I display more pages on the control's senitive context

EXEDITLib.Context var_Context = axEdit1.get_Context(null);
	var_Context.Add("First_1",null,null,null);
	var_Context.Add("First_2",null,null,null);
EXEDITLib.Context var_Context1 = axEdit1.get_Context("Second");
	var_Context1.Add("Second_1",null,null,null);
	var_Context1.Add("Second_2",null,null,null);
	var_Context1.Add("Second_3",null,null,null);
axEdit1.ActiveContextItems = "Second";
axEdit1.PagesContextItems = ":Page<font ;6><off -4>1</off></font>,Second:Page<font ;6><off -4>2</off></font>";

170
Is it possible to disable showing tooltip for items in the control's senitive context
EXEDITLib.Context var_Context = axEdit1.get_Context(null);
	var_Context.Add("Column",null,null,null);
	var_Context.set_Options(EXEDITLib.ContextOptionEnum.exContextItemToolTip,"This is bit of text that shown when user selects the <b>Column</b> item.");
	var_Context.Add("Item",null,null,null);
	var_Context.set_Options(EXEDITLib.ContextOptionEnum.exContextItemToolTip,"This is bit of text that shown when user selects the <b>Item</b> item.");
	var_Context.set_Options(EXEDITLib.ContextOptionEnum.exContextAllowToolTip,false);

169
How can I assign tooltips for items in the control's senitive context

EXEDITLib.Context var_Context = axEdit1.get_Context(null);
	var_Context.Add("Column",null,null,null);
	var_Context.set_Options(EXEDITLib.ContextOptionEnum.exContextItemToolTip,"This is bit of text that shown when user selects the <b>Column</b> item.");
	var_Context.Add("Item",null,null,null);
	var_Context.set_Options(EXEDITLib.ContextOptionEnum.exContextItemToolTip,"This is bit of text that shown when user selects the <b>Item</b> item.");

168
By default, the control shows the Context(""). How can I display other items

// OnContext event - Occurs when the user invokes the control's context window.
private void axEdit1_OnContext(object sender, AxEXEDITLib._IEditEvents_OnContextEvent e)
{
	System.Diagnostics.Debug.Print( "CurrentContext:" );
	System.Diagnostics.Debug.Print( e.context.ToString() );
	axEdit1.ActiveContextItems = "Second";
}
//this.axEdit1.OnContext += new AxEXEDITLib._IEditEvents_OnContextEventHandler(this.axEdit1_OnContext);

EXEDITLib.Context var_Context = axEdit1.get_Context(null);
	var_Context.Add("First_1",null,null,null);
	var_Context.Add("First_2",null,null,null);
EXEDITLib.Context var_Context1 = axEdit1.get_Context("Second");
	var_Context1.Add("Second_1",null,null,null);
	var_Context1.Add("Second_2",null,null,null);
	var_Context1.Add("Second_3",null,null,null);

167
How can I show the control's sensitive context

// DblClick event - Occurs when the user double clicks the left mouse button over an object.
private void axEdit1_DblClick(object sender, AxEXEDITLib._IEditEvents_DblClickEvent e)
{
	axEdit1.ShowContext("DB");
}
//this.axEdit1.DblClick += new AxEXEDITLib._IEditEvents_DblClickEventHandler(this.axEdit1_DblClick);

EXEDITLib.Context var_Context = axEdit1.get_Context("DB");
	var_Context.Add("BEGIN_MSG_MAP",null,null,null);
	var_Context.Add("<fgcolor=808080>MESSAGE_HANDLER",null,null,null);
	var_Context.Add("<fgcolor=808080>COMMAND_HANDLER",null,null,null);
	var_Context.Add("END_MSG_MAP",null,null,null);

166
How can I provide different sensitive context

// Change event - Indicates that the control's text have changed.
private void axEdit1_Change(object sender, EventArgs e)
{
	axEdit1.ShowContext(axEdit1.ChangeOnKey);
}
//this.axEdit1.Change += new EventHandler(this.axEdit1_Change);

axEdit1.Text = "";
axEdit1.InsertText("Press .(dot), :(colon) or CTRL + SPACE to invoke the control's context",null);
EXEDITLib.Context var_Context = axEdit1.get_Context(null);
	var_Context.Add("General_1",null,null,null);
	var_Context.Add("General_2",null,null,null);
EXEDITLib.Context var_Context1 = axEdit1.get_Context("46");
	var_Context1.Add("Property_1",null,null,null);
	var_Context1.Add("Property_2",null,null,null);
	var_Context1.Add("Property_3",null,null,null);
EXEDITLib.Context var_Context2 = axEdit1.get_Context("58");
	var_Context2.Add("Method_1",null,null,null);
	var_Context2.Add("Method_2",null,null,null);
	var_Context2.Add("Method_3",null,null,null);

165
How can I change the control's background/foreground colors while the control is locked/read-only

axEdit1.Locked = true;
axEdit1.SelBackColor = Color.FromArgb(128,128,128);
axEdit1.ForeColorLockedLine = Color.FromArgb(128,128,128);
axEdit1.BackColorLockedLine = Color.FromArgb(255,255,255);

164
How can change the color for selected text, when the control has no focus

axEdit1.HideSelection = false;
axEdit1.SelLength = 10;
axEdit1.SelBackColorHide = Color.FromArgb(255,0,0);

163
How do I change the "Incremental Search" caption

axEdit1.set_Cursor(EXEDITLib.ClientAreaEnum.exIncrementalSearchArea,"exHelp");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exIncrementalSearchField,EXEDITLib.FieldDialogEnum.exCaption,"Search for: %s");
axEdit1.IncrementalSearchError = Color.FromArgb(255,0,0);

162
How do I enable the scrollbar-extension, as thumb to be shown outside of the control's client area

axEdit1.ScrollBars = EXEDITLib.ScrollBarsEnum.exBoth;
axEdit1.set_ScrollPartVisible(EXEDITLib.ScrollBarEnum.exVScroll,EXEDITLib.ScrollPartEnum.exExtentThumbPart,true);
axEdit1.set_ScrollPartVisible(EXEDITLib.ScrollBarEnum.exHScroll,EXEDITLib.ScrollPartEnum.exExtentThumbPart,true);
axEdit1.set_ScrollPartVisible((EXEDITLib.ScrollBarEnum)0x2,EXEDITLib.ScrollPartEnum.exExtentThumbPart,true);
axEdit1.ScrollWidth = 4;
axEdit1.set_Background(EXEDITLib.BackgroundPartEnum.exVSBack,(uint)ColorTranslator.ToWin32(Color.FromArgb(240,240,240)));
axEdit1.set_Background(EXEDITLib.BackgroundPartEnum.exVSThumb,(uint)ColorTranslator.ToWin32(Color.FromArgb(128,128,128)));
axEdit1.ScrollHeight = 4;
axEdit1.set_Background(EXEDITLib.BackgroundPartEnum.exHSBack,axEdit1.get_Background(EXEDITLib.BackgroundPartEnum.exVSBack));
axEdit1.set_Background(EXEDITLib.BackgroundPartEnum.exHSThumb,axEdit1.get_Background(EXEDITLib.BackgroundPartEnum.exVSThumb));
axEdit1.set_Background(EXEDITLib.BackgroundPartEnum.exSizeGrip,axEdit1.get_Background(EXEDITLib.BackgroundPartEnum.exVSBack));

161
How can I get ride of control's horizontal scroll bar

axEdit1.AddKeyword("<b>CExHelperDialog</b>",null,null,null);
axEdit1.Refresh();
axEdit1.ScrollBars = EXEDITLib.ScrollBarsEnum.exVertical;

160
How do I specify the characters to close the sensitive context

axEdit1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axEdit1.AddKeyword("<b>class</b>","this is a bit of text that's shown when the cursor hovers the <b>class</b> keyword.","exontrol.edit",null);
axEdit1.AddKeyword("<b>public</b>","this is a bit of text that's shown when the cursor hovers the <b>class</b> keyword.","exontrol.edit",null);
axEdit1.Refresh();
EXEDITLib.Context var_Context = axEdit1.get_Context(null);
	var_Context.Add("<b>class</b>","",1,null);
	var_Context.Add("<b>public</b>","",2,null);
	var_Context.set_Options(EXEDITLib.ContextOptionEnum.exContextAllowChars,"_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz");

159
How do I sort items in the sensitive context

axEdit1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axEdit1.AddKeyword("<b>class</b>","this is a bit of text that's shown when the cursor hovers the <b>class</b> keyword.","exontrol.edit",null);
axEdit1.AddKeyword("<b>public</b>","this is a bit of text that's shown when the cursor hovers the <b>class</b> keyword.","exontrol.edit",null);
axEdit1.Refresh();
axEdit1.get_Context(null).Add("<b>public</b>","",2,null);
axEdit1.get_Context(null).Add("<b>class</b>","",1,null);
axEdit1.get_Context(null).Sort(true);

158
Can I add icons to the sensitive context

axEdit1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axEdit1.AddKeyword("<b>class</b>","this is a bit of text that's shown when the cursor hovers the <b>class</b> keyword.","exontrol.edit",null);
axEdit1.Refresh();
axEdit1.get_Context(null).Add("<b>class</b>","",1,null);

157
How can I change the keys combination that invokes the sensitive context

axEdit1.ContextKey = 544;
axEdit1.AddKeyword("<b>class</b>","this is a bit of text that's shown when the cursor hovers the <b>class</b> keyword.","exontrol.edit",null);
axEdit1.Refresh();
axEdit1.get_Context(null).Add("class",null,null,null);

156
How do I enable or disable the sensitive context menu
axEdit1.CodeCompletion = EXEDITLib.CodeCompletionEnum.exCodeCompletionDisable;
axEdit1.AddKeyword("<b>class</b>","this is a bit of text that's shown when the cursor hovers the <b>class</b> keyword.","exontrol.edit",null);
axEdit1.Refresh();
axEdit1.get_Context(null).Add("class",null,null,null);

155
How can I add a sensitive context menu

axEdit1.AddKeyword("<b>class</b>","this is a bit of text that's shown when the cursor hovers the <b>class</b> keyword.","exontrol.edit",null);
axEdit1.Refresh();
axEdit1.get_Context(null).Add("class",null,null,null);

154
Can I use wild characters to define keys in your control

axEdit1.AddWild("<fgcolor=808080>(*)</fgcolor>");
axEdit1.Refresh();

153
Can I use wild characters to define keys in your control

axEdit1.AddWild("_HANDLER<fgcolor=FF0000>(*)</fgcolor>");
axEdit1.Refresh();

152
How can I remove or delete all expressions

axEdit1.AddExpression("(","<b><fgcolor=FF0000> </fgcolor></b>",")",false,null);
axEdit1.ClearExpressions();
axEdit1.Refresh();

151
How can I remove or delete an expression

axEdit1.AddExpression("(","<b><fgcolor=FF0000> </fgcolor></b>",")",false,null);
axEdit1.DeleteExpression("(");
axEdit1.Refresh();

150
How can I add an expression

axEdit1.AddExpression("(","<b><fgcolor=FF0000> </fgcolor></b>",")",false,null);
axEdit1.Refresh();

149
How can I add an expression on multiple lines

axEdit1.AddExpression("<fgcolor=800000><b>BEGIN_MSG_MAP</b></fgcolor>","<b><fgcolor=FF0000> </fgcolor></b>","<fgcolor=800000><b>END_MSG_MAP</b></fgcolor>",true,null);
axEdit1.Refresh();

148
How can I remove or delete all keywords
axEdit1.AddKeyword("<b><fgcolor=FF0000>class</fgcolor></b>",null,null,null);
axEdit1.ClearKeywords();
axEdit1.Refresh();

147
How can I remove or delete keyword
axEdit1.AddKeyword("<b><fgcolor=FF0000>class</fgcolor></b>",null,null,null);
axEdit1.DeleteKeyword("class");
axEdit1.Refresh();

146
How do I add a keyword that's not case sensitive

axEdit1.AddKeyword("<b><fgcolor=FF0000>class</fgcolor></b>","","",2);
axEdit1.Refresh();
axEdit1.InsertText("ClasS\\r\\n",1);
axEdit1.InsertText("CLASS\\r\\n",1);

145
How do I add a keyword that's not case sensitive

axEdit1.AddKeyword("<fgcolor=FF0000>class</fgcolor>","","",1);
axEdit1.Refresh();
axEdit1.InsertText("ClasS\\r\\n",1);
axEdit1.InsertText("CLASS\\r\\n",1);

144
How can I assign a tooltip to a keyword

axEdit1.AddKeyword("<fgcolor=FF0000>class</fgcolor>","this is a bit of text that's shown when the cursor hovers the <b>class</b> keyword.","exontrol.edit",null);
axEdit1.Refresh();

143
How do I add a keyword

axEdit1.AddKeyword("<fgcolor=FF0000>class</fgcolor>",null,null,null);
axEdit1.Refresh();

142
How do I add a keyword

axEdit1.AddKeyword("<b>class</b>","this is a bit of text that's shown when the cursor hovers the <b>class</b> keyword.","exontrol.edit",null);
axEdit1.Refresh();

141
How can I display a tooltip as soon as the user types a keyword

axEdit1.ToolTipDelay = 1;
axEdit1.ToolTipOnTyping = true;
axEdit1.AddKeyword("<b>class</b>","this is a bit of text that's shown when the cursor hovers the <b>class</b> keyword.","exontrol.edit",null);
axEdit1.Refresh();

140
How do I change the color for a locked or a read only line

axEdit1.ForeColorLockedLine = Color.FromArgb(0,0,0);
axEdit1.BackColorLockedLine = Color.FromArgb(255,0,0);
axEdit1.set_LockedLine(1,true);

139
How do I lock or make read only a line

axEdit1.set_LockedLine(1,true);

138
How do I start overtyping

axEdit1.Overtype = true;

137
How do I get the selection

axEdit1.GetSelection(sy,sx,ey,ex);
System.Diagnostics.Debug.Print( sy.ToString() );
System.Diagnostics.Debug.Print( sx.ToString() );
System.Diagnostics.Debug.Print( ey.ToString() );
System.Diagnostics.Debug.Print( ex.ToString() );

136
How do I select multiple lines

axEdit1.SetSelection(0,0,10,0);
axEdit1.HideSelection = false;

135
How can I change the shape of the cursor when it hovers the selected text

axEdit1.set_Cursor(EXEDITLib.ClientAreaEnum.exSelectedText,"exHelp");
axEdit1.SelLength = 10;
axEdit1.HideSelection = false;

134
How can I change the shape of the cursor when it hovers the incremental search area

axEdit1.set_Cursor(EXEDITLib.ClientAreaEnum.exIncrementalSearchArea,"exHelp");

133
How can I change the shape of the cursor when it hovers the line numbers area

axEdit1.set_Cursor(EXEDITLib.ClientAreaEnum.exLineNumberArea,"exHelp");
axEdit1.LineNumberWidth = 16;

132
How can I change the shape of the cursor when it hovers the bookmark area

axEdit1.set_Cursor(EXEDITLib.ClientAreaEnum.exBookmarkArea,"exHelp");
axEdit1.BookmarkWidth = 16;

131
How can I change the shape of the cursor when it hovers the edit
axEdit1.set_Cursor(EXEDITLib.ClientAreaEnum.exEditArea,"exHelp");

130
How can I enable or disable OLE drag and drop operations
axEdit1.OLEDropMode = EXEDITLib.exOLEDropModeEnum.exOLEDropAutomatic;

129
How can I change the descriptions for items in the control's context menu

axEdit1.set_Caption(EXEDITLib.DialogEnum.exContextMenu,EXEDITLib.FieldDialogEnum.exContextUndo,"U N D O");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exContextMenu,EXEDITLib.FieldDialogEnum.exContextRedo,"R E D O");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exContextMenu,EXEDITLib.FieldDialogEnum.exContextCut,"C U T");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exContextMenu,EXEDITLib.FieldDialogEnum.exContextCopy,"C O P Y");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exContextMenu,EXEDITLib.FieldDialogEnum.exContextPaste,"P A S T E");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exContextMenu,EXEDITLib.FieldDialogEnum.exContextDelete,"D E L");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exContextMenu,EXEDITLib.FieldDialogEnum.exContextSelectAll,"A L L ");

128
How can I change the descriptions for fields in the Replace dialog

axEdit1.set_Caption(EXEDITLib.DialogEnum.exReplaceDialog,EXEDITLib.FieldDialogEnum.exFieldFindWhat,"What");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exReplaceDialog,EXEDITLib.FieldDialogEnum.exFieldReplaceWith,"Replace");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exReplaceDialog,EXEDITLib.FieldDialogEnum.exFieldWordOnly,"Word");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exReplaceDialog,EXEDITLib.FieldDialogEnum.exFieldMatchCase,"Case");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exReplaceDialog,EXEDITLib.FieldDialogEnum.exFieldFindNext,"Dir");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exReplaceDialog,EXEDITLib.FieldDialogEnum.exFieldSelection,"Sel");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exReplaceDialog,EXEDITLib.FieldDialogEnum.exFieldWholeFile,"File");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exReplaceDialog,EXEDITLib.FieldDialogEnum.exFieldReplace,"Rep");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exReplaceDialog,EXEDITLib.FieldDialogEnum.exFieldReplaceAll,"All");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exReplaceDialog,EXEDITLib.FieldDialogEnum.exFieldCancel,"Abandon");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exReplaceDialog,EXEDITLib.FieldDialogEnum.exErrorTitle,"Title");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exReplaceDialog,EXEDITLib.FieldDialogEnum.exErrorFindNext,"Failed!");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exReplaceDialog,EXEDITLib.FieldDialogEnum.exErrorFindNext,"Done");

127
How can I change the descriptions for fields in the Find dialog

axEdit1.set_Caption(EXEDITLib.DialogEnum.exFindDialog,EXEDITLib.FieldDialogEnum.exFieldFindWhat,"What");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exFindDialog,EXEDITLib.FieldDialogEnum.exFieldWordOnly,"Word");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exFindDialog,EXEDITLib.FieldDialogEnum.exFieldMatchCase,"Case");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exFindDialog,EXEDITLib.FieldDialogEnum.exFieldFindNext,"Dir");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exFindDialog,EXEDITLib.FieldDialogEnum.exFieldSelection,"U");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exFindDialog,EXEDITLib.FieldDialogEnum.exFieldWholeFile,"D");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exFindDialog,EXEDITLib.FieldDialogEnum.exFieldFindNext,"Next");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exFindDialog,EXEDITLib.FieldDialogEnum.exFieldReplace,"All");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exFindDialog,EXEDITLib.FieldDialogEnum.exFieldCancel,"Abandon");
axEdit1.set_Caption(EXEDITLib.DialogEnum.exFindDialog,EXEDITLib.FieldDialogEnum.exErrorFindNext,"Failed!");

126
How can I change the caption for the Replace dialog

axEdit1.set_Caption(EXEDITLib.DialogEnum.exReplaceDialog,EXEDITLib.FieldDialogEnum.exCaption,"Search and Replace");

125
How can I change the caption for the Find dialog

axEdit1.set_Caption(EXEDITLib.DialogEnum.exFindDialog,EXEDITLib.FieldDialogEnum.exCaption,"Search");

124
How can I move the cursor when user invokes the control's context menu

axEdit1.RClick = true;

123
How can I disable indenting the selected text when the user presses the TAB key
axEdit1.IndentOnTab = false;

122
How can I indent a line

axEdit1.LineNumberWidth = 18;
axEdit1.HideSelection = false;
axEdit1.SelectLine(3);
axEdit1.IndentSel(true);

121
How can I show or hide the control's splitter

axEdit1.AllowSplitter = EXEDITLib.SplitterEnum.exBothSplitter;
axEdit1.SplitPaneHeight = 128;
axEdit1.SplitPaneWidth = 128;

120
How can I select a line

axEdit1.LineNumberWidth = 18;
axEdit1.HideSelection = false;
axEdit1.SelectLine(3);

119
How do I change the font to display the line numbers

axEdit1.LineNumberFont.Name = "Tahoma";
axEdit1.LineNumberWidth = 18;

118
How can I change the height of the line

axEdit1.Font.Size = 32;
axEdit1.DrawGridLines = true;
axEdit1.Refresh();

117
How can I show or hide the grid lines

axEdit1.DrawGridLines = true;

116
How do I highlight the position of multiple lines expression on the vertical scroll bar

axEdit1.AllowMark = true;
axEdit1.MarkContinueBlocks = true;
axEdit1.AddKeyword("<b>CAxWnd",null,null,null);
axEdit1.AddExpression("<fgcolor=800000><b>BEGIN_MSG_MAP</b></fgcolor>","<b><fgcolor=FF0000> </fgcolor></b>","<fgcolor=800000><b>END_MSG_MAP</b></fgcolor>",true,null);
axEdit1.set_MarkColor("BEGIN_MSG_MAP",(uint)ColorTranslator.ToWin32(Color.FromArgb(255,0,0)));
axEdit1.set_MarkColor("END_MSG_MAP",(uint)ColorTranslator.ToWin32(Color.FromArgb(128,0,0)));
axEdit1.set_MarkColor("CAxWnd",(uint)ColorTranslator.ToWin32(Color.FromArgb(0,0,0)));
axEdit1.Refresh();

115
How do I ignore \" in a string

axEdit1.InsertText("\"just a string \\\"expression\"\\r\\n",1);
axEdit1.AddExpression("<fgcolor=800000><b>\"</b></fgcolor>","<b><fgcolor=FF0000> </fgcolor></b>","<fgcolor=800000><b>\"</b></fgcolor>",true,null);
axEdit1.set_IgnorePrefixInExpression("\"","\\");
axEdit1.Refresh();

114
How can I change the color for the line number's border

axEdit1.LineNumberBorderColor = Color.FromArgb(255,0,0);
axEdit1.LineNumberWidth = 18;

113
How can I change the color for the bookmark's border

axEdit1.BookmarkBorderColor = Color.FromArgb(255,0,0);
axEdit1.BookmarkWidth = 18;

112
Can I display a custom icon or picture for bookmarks

axEdit1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axEdit1.BookmarkImage = 1;
axEdit1.set_Bookmark(2,true);
axEdit1.set_Bookmark(4,true);
axEdit1.BookmarkWidth = 18;

111
Can I display a custom icon or picture in the bookmark area

axEdit1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axEdit1.set_BookmarkImageLine(2,1);
axEdit1.set_Bookmark(4,true);
axEdit1.BookmarkWidth = 18;

110
How do I remove the line's background color
axEdit1.set_BackColorLine(1,(uint)ColorTranslator.ToWin32(Color.FromArgb(255,0,0)));
axEdit1.ClearBackColorLine(1);

109
How do I change the foreground color for a line

axEdit1.set_ForeColorLine(1,(uint)ColorTranslator.ToWin32(Color.FromArgb(255,0,0)));

108
How do I change the background color for a line

axEdit1.set_BackColorLine(1,(uint)ColorTranslator.ToWin32(Color.FromArgb(255,0,0)));

107
How can I add my own items in the control's context menu

axEdit1.ContextMenuItems = "New Item";

106
How do I ensure that a specified line is visible

axEdit1.EnsureVisibleLine(axEdit1.Count);

105
How can I programmatically perform a REDO operation
axEdit1.Redo();

104
How can I programmatically perform an UNDO operation
axEdit1.Undo();

103
How do I get the bookmarks as a list

axEdit1.set_Bookmark(2,true);
axEdit1.set_Bookmark(4,true);
axEdit1.BookmarkWidth = 16;
object var_BookmarksList = axEdit1.BookmarksList;

102
How can I move to the previous bookmark

axEdit1.set_Bookmark(2,true);
axEdit1.set_Bookmark(4,true);
axEdit1.BookmarkWidth = 16;
axEdit1.PrevBookmark();

101
How can I move to the next bookmark

axEdit1.set_Bookmark(2,true);
axEdit1.set_Bookmark(4,true);
axEdit1.BookmarkWidth = 16;
axEdit1.NextBookmark();