DataLudi Grid v.1 > Classes > GridStyles

Back  Forward

GridStyles.foreground  property

주로 텍스트 색상으로 사용되는 Fill 객체. 설정 시에는 아래 예제처럼 여러가지 방식으로 지정할 수 있다. 

Getter
function foreground(): Fill
Setter
function setForeground(value: String|Fill)
Code -1
    // Solid Brush
    column.styles().setForeground('#3300ff00');
    // Linear Gradient Brush
    column.styles().setForeground('rgba(255, 254, 253, 0.5');
    // raba()
    column.styles().setForeground('linear,#ffffff,#f0f0f0,90');
See Also
background
Fill
스타일 개요
Examples
Column Styles