C# Class Nexus.UI.Controls.AutoCompleteListEventArgs

The event arguments for events that allow extending the code completion list.
Inheritance: System.EventArgs
ファイルを表示 Open project: NexusMods/NexusModManager-4.5 Class Usage Examples

Public Methods

Method Description
AutoCompleteListEventArgs ( List p_lstAutoCompleteList, string p_strElementPath, string p_strSiblings, AutoCompleteType p_actType, string p_strLastWord ) : System

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

Method Details

AutoCompleteListEventArgs() public method

A simple constructor that initializes the object with the given values.
public AutoCompleteListEventArgs ( List p_lstAutoCompleteList, string p_strElementPath, string p_strSiblings, AutoCompleteType p_actType, string p_strLastWord ) : System
p_lstAutoCompleteList List The list of code completions.
p_strElementPath string The path to the current element in the XML.
p_strSiblings string The siblings of the current XML object being completed.
p_actType AutoCompleteType The type of object being completed.
p_strLastWord string The word that has been entered thus far for the autocompletion string.
return System