|
|
|
SftMaskAutoComplete.ShowOne Property |
Defines whether the autocomplete window is shown for just one already completely matching entry (suggest mode).
Syntax
VB.NET |
Boolean = object.ShowOne As Boolean |
||
VB |
Boolean = object.ShowOne As Boolean |
||
C#.NET |
bool Boolean = object.ShowOne; |
||
VC++ |
VARIANT_BOOL Boolean = object->ShowOne;
|
||
C |
HRESULT object->get_ShowOne(VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.ShowOne : WordBool; |
||
VB.NET |
object.ShowOne = Boolean As Boolean |
||
VB |
object.ShowOne = Boolean As Boolean |
||
C#.NET |
bool object.ShowOne = Boolean; |
||
VC++ |
VARIANT_BOOL object->ShowOne = Boolean;
|
||
C |
HRESULT object->put_ShowOne(VARIANT_BOOL Boolean); |
||
Delphi |
object.ShowOne := Boolean : WordBool; |
object
A SftMaskAutoComplete object.
Boolean
Defines whether the autocomplete window is shown for just one already completely matching entry (suggest mode).
Boolean |
Description |
True |
The autocomplete window is shown even if there is only one matching entry and the currently entered text completely matches this entry. |
False |
The autocomplete window is hidden if there is only one matching entry and the currently entered text completely matches this entry. |
Comments
The ShowOne property defines whether the autocomplete window is shown for just one already completely matching entry (suggest mode).
This property is only used if the AutoComplete.Mode property is defined as autocompleteSftMaskSuggest or autocompleteSftMaskSuggestAppend.