지정한 탭 아이템의 타이틀바의 글자색을 설정하는 API이다.
Parameters | Type | Description |
---|---|---|
nTabItem | short | 탭 아이템 인덱스 |
clrFore | COLOR | 탭 타이틀바 글자색 |
Type | Description |
---|---|
BOOL | 정상 적용 여부(true, false) |
function btnSettitlebarforecolorex_on_mouseup()
{
tabTest.settabitemtitlebartext(1, "title");
tabTest.settitlebarforecolorex(1, factory.rgb(255, 0, 0));
}