Link Search Menu Expand Document

TextBox.AddCandidate Method

Explanation Add to the candidate list in the text box.
Character strings entered with text completion are not subject to input restrictions due to the setting of the InputMode property. Specifying the MaxLength property is valid, but the MaxLengthReached event does not occur. Also, the AutoTab property setting is ignored.
Call format TextBox1.AddCandidate( suggest )
Return value None
Arguments String suggest Character string displayed in the candidate
Exception None
Example of use
    TextBox1.AddCandidate("Candidate");
    TextBox1.AddCandidate("Candidate List");
    
Related item ClearCandidate method