콤보박스 리스트 중 지정한 텍스트가 있는지 확인하는 API이다.
Parameters | Type | Description |
---|---|---|
strFindString | STRING | 찾을 텍스트 |
bAllCase | bool | 전체여부(true, false) |
Type | Description |
---|---|
short | 텍스트가 있는 item index |
*찾으려는 스트링은 코드값을 포함한 전체 스트링을 입력해야 한다.
function btnfindstring_on_mouseup()
{
screen.alert(cbo.findstring("3:CODE3", true));
}