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