Gets or sets a value indicating whether a query
should be automatically highlighted as you type.
Namespace: CleanCode.SqlEditorControlsAssembly: CleanCode.SqlEditorControls (in CleanCode.SqlEditorControls.dll) Version: 1.2.3.0 (1.2.03)
public bool AutoHighlightMode { get; set; }
public bool AutoHighlightMode { get; set; }
Public Property AutoHighlightMode As Boolean
Get
Set
Public Property AutoHighlightMode As Boolean
Get
Set
public:
property bool AutoHighlightMode {
bool get ();
void set (bool value);
}
public:
property bool AutoHighlightMode {
bool get ();
void set (bool value);
}
Field Value
true if auto-highlight mode is enabled; otherwise,
false.
This property may be set programmatically or by explicit user
action pressing the Auto-Highlight button.
There is one drawback with automatic highlighting: the highlighting
actions themselves are considered standard editing actions so they
go on the "undo" queue along with user editing actions.
This effectively renders the "undo" facility unusable.
See also
EnableHighlighting.