Property | Type | Description | |
---|---|---|---|
m_helpTopicProvider | IHelpTopicProvider | ||
m_textbox |
Method | Description | |
---|---|---|
CheckDisposed ( ) : void |
Check to see if the object has been disposed. All public Properties and Methods should call this before doing anything else.
|
Method | Description | |
---|---|---|
Dispose ( bool disposing ) : void |
|
|
GroupText ( string leftText, string rightText ) : void |
Attempts to group text. Defaults to not requiring any selected text
|
|
GroupText ( string leftText, string rightText, bool requireSel ) : void |
Attempts to group text.
|
|
HelperMenu ( |
Constructor for Helper Context Menu.
|
|
InsertText ( string text ) : void |
Insert text. Assumes that if text is selected it is meant to be replaced.
|
|
InsertText ( string text, bool replaceSelection ) : void |
Insert text. Assumes that if selected text is not replaced, the new text should be inserted at the left of the selection.
|
|
InsertText ( string text, bool replaceSelection, bool insertAtRight ) : void |
Insert text.
|
protected GroupText ( string leftText, string rightText ) : void | ||
leftText | string | Text to insert before the highlighted region |
rightText | string | Text to insert after the highlighted region |
return | void |
protected GroupText ( string leftText, string rightText, bool requireSel ) : void | ||
leftText | string | Text to insert before the highlighted region |
rightText | string | Text to insert after the highlighted region |
requireSel | bool | Determines if a selection is required or not. If a selection is required but none /// is present, a warning message will be shown and the text will not be altered. |
return | void |
protected HelperMenu ( |
||
textbox | the textbox to insert regex characters into | |
helpTopicProvider | IHelpTopicProvider | usually IHelpTopicProvider.App |
return | System |
protected InsertText ( string text ) : void | ||
text | string | Text to insert |
return | void |
protected InsertText ( string text, bool replaceSelection ) : void | ||
text | string | Text to insert |
replaceSelection | bool | Determines if selected text should be replaced or not |
return | void |
protected InsertText ( string text, bool replaceSelection, bool insertAtRight ) : void | ||
text | string | Text to insert |
replaceSelection | bool | Determines if selected text should be replaced or not |
insertAtRight | bool | If true and replaceSelection is false, the inserted text will be inserted at the right /// boundary of the selection instead of the left boundary. |
return | void |
protected IHelpTopicProvider m_helpTopicProvider | ||
return | IHelpTopicProvider |