C# Class Nexus.UI.Controls.XmlCompletionData

Describes a selection in a code completion dialog.
Inheritance: ICSharpCode.TextEditor.Gui.CompletionWindow.DefaultCompletionData
Show file Open project: NexusMods/NexusModManager-4.5

Public Methods

Method Description
InsertAction ( TextArea textArea, char ch ) : bool

Inserts this selection into the document.

XmlCompletionData ( AutoCompleteType p_actType, string p_strName, string p_strDescription ) : System

A simple constructor that initializes the object with the given values.

Method Details

InsertAction() public method

Inserts this selection into the document.
public InsertAction ( TextArea textArea, char ch ) : bool
textArea ICSharpCode.TextEditor.TextArea The text area into which to insert the selection.
ch char The character that was used to choose this completion selection.
return bool

XmlCompletionData() public method

A simple constructor that initializes the object with the given values.
public XmlCompletionData ( AutoCompleteType p_actType, string p_strName, string p_strDescription ) : System
p_actType AutoCompleteType The type of the completion.
p_strName string The name of the selection.
p_strDescription string The description of the selection.
return System