IConsoleArgumentAutoComplete

C++
struct IConsoleArgumentAutoComplete {
};
File

IConsole.h

Description

Interface to the arguments of the console command.

IConsoleArgumentAutoComplete::~IConsoleArgumentAutoComplete Destructor
C++
IConsoleArgumentAutoComplete::GetCount Method
C++
virtual int GetCount() const = 0;
Description

Gets number of matches for the argument to auto complete.

IConsoleArgumentAutoComplete::GetValue Method
C++
virtual const char* GetValue(int nIndex) const = 0;
Description

Gets argument value by index, nIndex must be in 0 <= nIndex < GetCount()