텍스트의 그라데이션 색상을 적용하는 API이다.
Parameters | Type | Description |
---|---|---|
clrStart | COLOR | 그라데이션 첫 색상 |
clrEnd | COLOR | 그라데이션 끝 색상 |
Type | Description |
---|---|
void | 없음 |
* 그라데이션 색상은 그라데이션 효과 적용 상태가 true로 되어 있어야 적용 가능하다.
function btnSetgradient_on_mouseup()
{
txtTest.setgradienteffect(2);
txtTest.setgradientcolor(factory.rgb(200, 190, 160), factory.rgb(255, 255, 255));
}