Nexus.UI.Controls.AutoCompleteListEventArgs.AutoCompleteListEventArgs C# (CSharp) Method

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
		public AutoCompleteListEventArgs(List<XmlCompletionData> p_lstAutoCompleteList, string p_strElementPath, string[] p_strSiblings, AutoCompleteType p_actType, string p_strLastWord)
		{
			m_lstAutoCompleteList = p_lstAutoCompleteList;
			m_strElementPath = p_strElementPath;
			m_strSiblings = p_strSiblings;
			m_actType = p_actType;
			m_strLastWord = p_strLastWord;
		}
AutoCompleteListEventArgs