텍스트의 blink(깜빡임) 배경색을 설정하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| clrBack | COLOR | blink 배경색 | 
| Type | Description | 
|---|---|
| void | 없음 | 
function btnSetBlink_on_mouseup()
{
     txtTest.setblinkbackcolor(factory.rgb(0, 0, 255));
     // blink 배경색 파란색으로 변경
     txtTest.setblink(true);
}