Class AutoCompleteInfo
The AutoCompleteInfo class provides an encapsulation for the data to be serialized for persisting the current state of the AutoComplete class.
Inheritance
Inherited Members
Namespace: Syncfusion.Windows.Forms.Tools
Assembly: Syncfusion.Tools.Windows.dll
Syntax
public class AutoCompleteInfo
Remarks
The AutoCompleteInfo class provides a wrapper around the DataTable used by the AutoComplete class to hold the history items when in AutoSerialize mode.
Constructors
AutoCompleteInfo()
Creates an object of type AutoCompleteInfo and initializes the member objects.
Declaration
public AutoCompleteInfo()
Remarks
The DataTable that is used by the AutoCompleteInfo class to hold information about the history items of the AutoComplete class is initialized with a new System.Data.DataTable. The CompleteList property needs to be set with the appropriate DataTable.
Properties
CompleteList
Returns the complete list of items in the AutoComplete object.
Declaration
public DataTable CompleteList { get; set; }
Property Value
Type |
---|
System.Data.DataTable |
Remarks
This value needs to be set to the DataTable being used by the AutoComplete class that this AutoCompleteInfo object is providing services for.