DataLudi Grid v.1 > Classes > GridStyles

Back  Forward

GridStyles.inactiveForeground  property

削除された行のセルなどでテキストの色として使われるFill客体。 設定の時には下のサンプルみたいにいろんな方法で指定できる。 

Getter
function inactiveForeground(): Fill
Setter
function setInactiveForeground(value: String|Fill)
Code -1
    // Solid Brush
    column.styles().setInactiveForeground('#3300ff00');
    // Linear Gradient Brush
    column.styles().setInactiveForeground('rgba(255, 254, 253, 0.5');
    // raba()
    column.styles().setInactiveForeground('linear,#ffffff,#f0f0f0,90');
See Also
Fill
inactiveBackground
foreground
スタイル概要
Examples
Column Styles