|
|
|
SftBoxDropDown.CharSearchColumn Property |
Defines the column searched for characters typed by the user.
Syntax
VB.NET |
ColNum = object.CharSearchColumn As Short |
||
VB |
ColNum = object.CharSearchColumn As Integer |
||
C#.NET |
short ColNum = object.CharSearchColumn; |
||
VC++ |
short ColNum = object->CharSearchColumn;
|
||
C |
HRESULT object->get_CharSearchColumn(short* ColNum); |
||
Delphi |
ColNum := object.CharSearchColumn : Smallint; |
||
VB.NET |
object.CharSearchColumn = ColNum As Short |
||
VB |
object.CharSearchColumn = ColNum As Integer |
||
C#.NET |
short object.CharSearchColumn = ColNum; |
||
VC++ |
short object->CharSearchColumn = ColNum;
|
||
C |
HRESULT object->put_CharSearchColumn(short ColNum); |
||
Delphi |
object.CharSearchColumn := ColNum : Smallint; |
object
A SftBoxDropDown object.
ColNum
Defines the zero-based column number searched for characters typed by the user. If -1 is specified, the first displayed column is searched.
Comments
The CharSearchColumn property defines the column searched for characters typed by the user.
If an item is selected, the edit control portion displays the cell of specified column.
The DropDown.CharSearchMode property defines how typed characters are matched to items in the combo box.